ZestCode
 
Loading...
Searching...
No Matches
sem_post

semphr. h

sem_post( sem_t xSemaphore )

Macro to release a semaphore. The semaphore must have previously been created with a call to sem_binary_create(), mutex_create() or sem_create(). and obtained using sSemaphoreTake().

This macro must not be used from an ISR. See xSemaphoreGiveFromISR () for an alternative which can be used from an ISR.

This macro must also not be used on semaphores created using mutex_recursive_create().

Parameters
xSemaphoreA handle to the semaphore being released. This is the handle returned when the semaphore was created.
Returns
pdTRUE if the semaphore was released. pdFALSE if an error occurred. Semaphores are implemented using queues. An error can occur if there is no space on the queue to post a message - indicating that the semaphore was not first obtained correctly.

Example usage:

sem_t xSemaphore = NULL;

void vATask( void * pvParameters )
{
   // Create the semaphore to guard a shared resource.
   xSemaphore = vSemaphoreCreateBinary();

   if( xSemaphore != NULL )
   {
       if( sem_post( xSemaphore ) != pdTRUE )
       {
           // We would expect this call to fail because we cannot give
           // a semaphore without first "taking" it!
       }

       // Obtain the semaphore - don't block if the semaphore is not
       // immediately available.
       if( sem_wait( xSemaphore, ( uint32_t ) 0 ) )
       {
           // We now have the semaphore and can access the shared resource.

           // ...

           // We have finished accessing the shared resource so can free the
           // semaphore.
           if( sem_post( xSemaphore ) != pdTRUE )
           {
               // We would not expect this call to fail because we must have
               // obtained the semaphore to get here.
           }
       }
   }
}