Home |
RTKernel-32 Programming Manual Function RTKResetEvent |
Function RTKResetEventRTKResetEvent sets the value of an event, counting, or binary semaphore to 0. Subsequent calls to RTKWait, RTKWaitTimed, or RTKWaitUntil will block: void RTKResetEvent(RTKSemaphore S); ParametersSThe semaphore to reset. To set an event semaphore to 1, use RTKSignal. To merely release all tasks waiting at the event semaphore without setting the semaphore, use RTKPulse.
|