CEL_CRITSEC_ENTER

This structure logs the event that occurs when a thread is blocked by entering a critical section currently owned by another thread.

typedef struct __CEL_CS_ENTER {
  HANDLE hCS; 
  HANDLE hOwnerThread; 
} CEL_CRITSEC_ENTER, *PCEL_CRITSEC_ENTER;

Members

  • hCS
    Handle to the critical section.
  • hOwnerThread
    Handle of the thread that currently owns the critical section.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Celog.h.

See Also

EnterCriticalSection

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.