Share via


CEL_SEM_RELEASE (Compact 2013)

3/28/2014

This structure identifies a semaphore that has been released by a thread.

Syntax

typedef struct __CEL_SEM_RELEASE {
  HANDLE hSem;
  DWORD dwReleaseCount;
  DWORD dwPreviousCount;
} CEL_SEM_RELEASE, *PCEL_SEM_RELEASE;

Members

  • hSem
    Handle of the semaphore being released.
  • dwReleaseCount
    Corresponds to the lReleaseCount parameter of ReleaseSemaphore.
  • dwPreviousCount
    Corresponds to the lpPreviousCount parameter of ReleaseSemaphore.

Requirements

Header

celog.h

See Also

Reference

CeLog Event Tracking Structures
ReleaseSemaphore