Searched refs:sem_t (Results 1 – 13 of 13) sorted by relevance
| /third_party/ulib/musl/include/ |
| A D | semaphore.h | 16 #define SEM_FAILED ((sem_t*)0) 18 int sem_close(sem_t*); 19 int sem_destroy(sem_t*); 20 int sem_getvalue(sem_t* __restrict, int* __restrict); 21 int sem_init(sem_t*, int, unsigned); 22 sem_t* sem_open(const char*, int, ...); 23 int sem_post(sem_t*); 24 int sem_timedwait(sem_t* __restrict, const struct timespec* __restrict); 25 int sem_trywait(sem_t*); 27 int sem_wait(sem_t*);
|
| /third_party/ulib/musl/pthread/ |
| A D | sem_open.c | 5 sem_t* sem_open(const char* name, int flags, ...) { in sem_open() 10 int sem_close(sem_t* sem) { in sem_close()
|
| A D | sem_destroy.c | 3 int sem_destroy(sem_t* sem) { in sem_destroy()
|
| A D | sem_wait.c | 3 int sem_wait(sem_t* sem) { in sem_wait()
|
| A D | sem_getvalue.c | 5 int sem_getvalue(sem_t* restrict sem, int* restrict valp) { in sem_getvalue()
|
| A D | sem_init.c | 6 int sem_init(sem_t* sem, int pshared, unsigned value) { in sem_init()
|
| A D | sem_trywait.c | 4 int sem_trywait(sem_t* sem) { in sem_trywait()
|
| A D | sem_post.c | 5 int sem_post(sem_t* sem) { in sem_post()
|
| A D | sem_timedwait.c | 8 int sem_timedwait(sem_t* restrict sem, const struct timespec* restrict at) { in sem_timedwait()
|
| /third_party/lib/acpica/source/os_specific/service_layers/ |
| A D | osunixxf.c | 750 sem_t *Sem; in AcpiOsCreateSemaphore() 771 Sem = AcpiOsAllocate (sizeof (sem_t)); in AcpiOsCreateSemaphore() 805 sem_t *Sem = (sem_t *) Handle; in AcpiOsDeleteSemaphore() 843 sem_t *Sem = (sem_t *) Handle; in AcpiOsWaitSemaphore() 972 sem_t *Sem = (sem_t *)Handle; in AcpiOsSignalSemaphore()
|
| A D | osfuchsia.cpp | 635 sem_t* sem = (sem_t*)malloc(sizeof(sem_t)); in AcpiOsCreateSemaphore()
|
| /third_party/lib/acpica/source/include/acpica/platform/ |
| A D | acfuchsia.h | 48 #define ACPI_SEMAPHORE sem_t*
|
| /third_party/ulib/musl/include/bits/ |
| A D | alltypes.h | 519 } sem_t; typedef
|
Completed in 21 milliseconds