| 141 | } |
| 142 | |
| 143 | int bthread_sem_disable_csite(bthread_sem_t* sema) { |
| 144 | sema->enable_csite = false; |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | int bthread_sem_destroy(bthread_sem_t* semaphore) { |
| 149 | bthread::butex_destroy(semaphore->butex); |
no outgoing calls
no test coverage detected