CMSIS-RTOS  Version 1.00
CMSIS-RTOS API: Generic RTOS interface for Cortex-M processor-based devices.
Semaphore Management

Control access to shared resources. More...

Defines

#define osFeature_Semaphore   30
 maximum count for SemaphoreInit function
#define osSemaphoreDef(name)   osSemaphoreDef_t os_semaphore_def_##name = { 0 }
 Define a Semaphore object.
#define osSemaphore(name)   &os_semaphore_def_##name
 Access a Semaphore definition.

Functions

osSemaphoreId osSemaphoreCreate (osSemaphoreDef_t *semaphore_def, int32_t count)
 Create and Initialize a Semaphore object used for managing resources.
int32_t osSemaphoreWait (osSemaphoreId semaphore_id, uint32_t millisec)
 Wait until a Semaphore token becomes available.
osStatus osSemaphoreRelease (osSemaphoreId semaphore_id)
 Release a Semaphore token.

Description

The Semaphore Management function group is used to manage and protect access to shared resources. For example, with a Semaphore the access to a group of identical peripherals can be managed. The number of available resources is specified as parameter of the osSemaphoreCreate function.

Each time a Semaphore token is obtained with osSemaphoreWait the semaphore count is decremented. When the semaphore count is 0, no Semaphore token can be obtained. Semaphores are released with osSemaphoreRelease; this function increments the semaphore count.

Semaphore.png
CMSIS-RTOS Semaphore

Define Documentation

#define osFeature_Semaphore   30

A CMSIS-RTOS implementation may support semaphores. The value osFeature_Semaphore indicates the maximum index count for a semaphore.

#define osSemaphore (   name)    &os_semaphore_def_##name

Access to semaphore object for the functions osSemaphoreCreate.

Parameters:
namename of the semaphore object.
Note:
CAN BE CHANGED: The parameter to osSemaphore shall be consistent but the macro body is implementation specific in every CMSIS-RTOS.
#define osSemaphoreDef (   name)    osSemaphoreDef_t os_semaphore_def_##name = { 0 }

Define a semaphore object that is referenced by osSemaphore.

Parameters:
namename of the semaphore object.
Note:
CAN BE CHANGED: The parameter to osSemaphoreDef shall be consistent but the macro body is implementation specific in every CMSIS-RTOS.

Function Documentation

osSemaphoreId osSemaphoreCreate ( osSemaphoreDef_t semaphore_def,
int32_t  count 
)
Parameters:
[in]semaphore_defsemaphore definition referenced with osSemaphore.
[in]countnumber of available resources.
Returns:
semaphore ID for reference by other functions or NULL in case of error.
Note:
MUST REMAIN UNCHANGED: osSemaphoreCreate shall be consistent in every CMSIS-RTOS.

Create and initialize a Semaphore object that is used to manage access to shared resources. The parameter count specifies the number of available resources. The count value 1 creates a binary semaphore.

osStatus osSemaphoreRelease ( osSemaphoreId  semaphore_id)
Parameters:
[in]semaphore_idsemaphore object referenced with osSemaphore.
Returns:
status code that indicates the execution status of the function.
Note:
MUST REMAIN UNCHANGED: osSemaphoreRelease shall be consistent in every CMSIS-RTOS.

Release a Semaphore token. This increments the count of avaiable semaphore tokens.

Note:
osSemaphoreRelease can be called also from interrupt service routines.

Status and Error Codes

  • osOK: the semaphore has been released.
  • osErrorResource: all tokens have already been released.
  • osErrorParameter: the parameter semaphore_id is incorrect.
int32_t osSemaphoreWait ( osSemaphoreId  semaphore_id,
uint32_t  millisec 
)
Parameters:
[in]semaphore_idsemaphore object referenced with osSemaphore.
[in]millisectimeout value or 0 in case of no time-out.
Returns:
number of available tokens, or -1 in case of incorrect parameters.
Note:
MUST REMAIN UNCHANGED: osSemaphoreWait shall be consistent in every CMSIS-RTOS.

Wait until a Semaphore token becomes available. When no Semaphore token is available, the function waits for the time specified with the parameter millisec. When millisec is set to osWaitForever, the function will wait for an infinite time until a Semaphore token becomes available. The return value indicates the number of available tokens (the semaphore count value). If 0 is returned, then no semaphore was available.