Home
last modified time | relevance | path

Searched refs:osSemaphoreId_t (Results 1 – 3 of 3) sorted by relevance

/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/RTOS2/Include/
Dcmsis_os2.h223 typedef void *osSemaphoreId_t; typedef
610 osSemaphoreId_t osSemaphoreNew (uint32_t max_count, uint32_t initial_count, const osSemaphoreAttr_t…
615 const char *osSemaphoreGetName (osSemaphoreId_t semaphore_id);
621 osStatus_t osSemaphoreAcquire (osSemaphoreId_t semaphore_id, uint32_t timeout);
626 osStatus_t osSemaphoreRelease (osSemaphoreId_t semaphore_id);
631 uint32_t osSemaphoreGetCount (osSemaphoreId_t semaphore_id);
636 osStatus_t osSemaphoreDelete (osSemaphoreId_t semaphore_id);
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/RTOS2/RTX/Include/
Drtx_evr.h1383 extern void EvrRtxSemaphoreError (osSemaphoreId_t semaphore_id, int32_t status);
1406 extern void EvrRtxSemaphoreCreated (osSemaphoreId_t semaphore_id, const char *name);
1417 extern void EvrRtxSemaphoreGetName (osSemaphoreId_t semaphore_id, const char *name);
1428 extern void EvrRtxSemaphoreAcquire (osSemaphoreId_t semaphore_id, uint32_t timeout);
1439 extern void EvrRtxSemaphoreAcquirePending (osSemaphoreId_t semaphore_id, uint32_t timeout);
1449 extern void EvrRtxSemaphoreAcquireTimeout (osSemaphoreId_t semaphore_id);
1460 extern void EvrRtxSemaphoreAcquired (osSemaphoreId_t semaphore_id, uint32_t tokens);
1470 extern void EvrRtxSemaphoreNotAcquired (osSemaphoreId_t semaphore_id);
1480 extern void EvrRtxSemaphoreRelease (osSemaphoreId_t semaphore_id);
1491 extern void EvrRtxSemaphoreReleased (osSemaphoreId_t semaphore_id, uint32_t tokens);
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/RTOS2/RTX/Source/
Drtx_lib.h80 __STATIC_INLINE os_semaphore_t *osRtxSemaphoreId (osSemaphoreId_t semaphore_id) { in osRtxSemaphoreId()