Thread free flag helpers
| 571 | |
| 572 | // Thread free flag helpers |
| 573 | static inline mi_block_t* mi_tf_block(mi_thread_free_t tf) { |
| 574 | return (mi_block_t*)(tf & ~0x03); |
| 575 | } |
| 576 | static inline mi_delayed_t mi_tf_delayed(mi_thread_free_t tf) { |
| 577 | return (mi_delayed_t)(tf & 0x03); |
| 578 | } |
no outgoing calls
no test coverage detected