Lines Matching defs:p
19 #define Thread_Construct(p) *(p) = NULL argument
20 #define Thread_WasCreated(p) (*(p) != NULL) argument
21 #define Thread_Close(p) HandlePtr_Close(p) argument
22 #define Thread_Wait(p) Handle_WaitObject(*(p)) argument
40 #define Event_Construct(p) *(p) = NULL argument
41 #define Event_IsCreated(p) (*(p) != NULL) argument
42 #define Event_Close(p) HandlePtr_Close(p) argument
43 #define Event_Wait(p) Handle_WaitObject(*(p)) argument
52 #define Semaphore_Construct(p) (*p) = NULL argument
53 #define Semaphore_Close(p) HandlePtr_Close(p) argument
54 #define Semaphore_Wait(p) Handle_WaitObject(*(p)) argument
61 #define CriticalSection_Delete(p) DeleteCriticalSection(p) argument
62 #define CriticalSection_Enter(p) EnterCriticalSection(p) argument
63 #define CriticalSection_Leave(p) LeaveCriticalSection(p) argument