| 44 | #define _BLOCKCOUNT_WAITERS(c) (((c) & _BLOCKCOUNT_WAITERS_FLAG) != 0) |
| 45 | |
| 46 | static inline unsigned int |
| 47 | blockcount_read(blockcount_t *count) |
| 48 | { |
| 49 | return (_BLOCKCOUNT_COUNT(atomic_load_int(&count->__count))); |
| 50 | } |
| 51 | |
| 52 | #endif /* !__SYS__BLOCKCOUNT_H__ */ |
no outgoing calls
no test coverage detected