OSA : OS_Csem_Check

bool OS_Csem_Check (csem)
bool OS_Csem_Check_I (csem)

Check if csem's value is non-zero.

OS_ENABLE_CSEM constant must be defined in OSAcfg.h. Size of counting semaphores is defined by OS_CSEM_SIZE constant

For PIC16, counting semaphores can only be allocated in bank0 or bank1

Call allowed:

Parameters:

csem Counting semaphore. Variable of OST_CSEM type

Returns:

false csem is zero
true csem in not zero

Example:

OST_CSEM csem;
 
void Task (void)
{
    for (;;) {
        /*...*/
        if (OS_Csem_Check (csem)) {     // if semaphore is set
            OS_Csem_Accept(csem);       // then accept it
            /*...*/
        }
        /*...*/
    }
}

Old style name

OS_CheckCSem

See also