| 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 | } |
| 579 | static inline mi_thread_free_t mi_tf_make(mi_block_t* block, mi_delayed_t delayed) { |
| 580 | return (mi_thread_free_t)((uintptr_t)block | (uintptr_t)delayed); |
| 581 | } |
no outgoing calls
no test coverage detected