====== OSA : OS_Csem_Create ======
**OS_Csem_Create (csem)**\\
=== ===
{{osa:ref:attr_call_not_int.png|Not allowed in interrupt}}
Create counting semaphore. After creation semaphore's value is zero.
##[[en:osa:ref:appendix:configuration|OS_ENABLE_CSEM]]## constant must be defined in ##[[en:osa:ref:appendix:configuration|OSAcfg.h]]##. Size of counting semaphores is defined by ##[[en:osa:ref:appendix:configuration#Data types|OS_CSEM_SIZE]]## constant
For PIC16, counting semaphores can only be allocated in **bank0** or **bank1**
=== Call allowed: ===
Not in interrupt
=== Parameters: ===
{| class = "fpl"
|-
|//''csem''//
|Counting semaphore. Variable of ##[[en:osa:ref:description:data_types#OST_CSEM|OST_CSEM]]## type
|}
=== Returns: ===
nothing
=== Example: ===
OST_CSEM csem;
void Task (void)
{
OS_Csem_Create (csem); // Create semaphore to work with it
for (;;) {
/*...*/
}
}
=== Old style name ===
**OS_CreateCSem**\\
=== See also ===
* [[en:osa:ref:allservices:OS_Csem_Signal|OS_Csem_Signal]]
* [[en:osa:ref:allservices:OS_Csem_Set|OS_Csem_Set]]
* [[en:osa:ref:allservices:OS_Csem_SetValue|OS_Csem_SetValue]]
* [[en:osa:ref:allservices:OS_Csem_Reset|OS_Csem_Reset]]
* [[en:osa:ref:allservices:OS_Csem_Accept|OS_Csem_Accept]]
* [[en:osa:ref:allservices:OS_Csem_Check|OS_Csem_Check]]
* [[en:osa:ref:allservices:OS_Csem_Wait|OS_Csem_Wait]]
* [[en:osa:ref:allservices:OS_Csem_Wait_TO|OS_Csem_Wait_TO]]
----
* [[en:osa:ref:services:alphabetical|Alphabetical]]
* [[en:osa:ref:services:brieflist|All services]]
~~UP~~