| 32 | } |
| 33 | |
| 34 | inline uint32_t* ButexInterface::create_futex() noexcept { |
| 35 | return ::bthread::butex_create_checked<uint32_t>(); |
| 36 | } |
| 37 | |
| 38 | inline void ButexInterface::destroy_futex(uint32_t* butex) noexcept { |
| 39 | return ::bthread::butex_destroy(butex); |
nothing calls this directly
no outgoing calls
no test coverage detected