Home
last modified time | relevance | path

Searched defs:OSSemaphore (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/skia/src/base/
H A DSkSemaphore.cpp15 struct SkSemaphore::OSSemaphore { struct in SkSemaphore
18 OSSemaphore() { fSemaphore = dispatch_semaphore_create(0/*initial count*/); } in OSSemaphore() function
27 struct SkSemaphore::OSSemaphore {
30 OSSemaphore() { in OSSemaphore() function
47 struct SkSemaphore::OSSemaphore {
48 sem_t fSemaphore;
50 OSSemaphore() { sem_init(&fSemaphore, 0/*cross process?*/, 0/*initial count*/); } in OSSemaphore() argument
51 ~OSSemaphore() { sem_destroy(&fSemaphore); } in ~OSSemaphore()
53 void signal(int n) { while (n --> 0) { sem_post(&fSemaphore); } } in signal()
54 void wait() { in wait()