| 6051 | |
| 6052 | #if !NO_MALLINFO |
| 6053 | struct mallinfo mspace_mallinfo(mspace msp) { |
| 6054 | mstate ms = (mstate)msp; |
| 6055 | if (!ok_magic(ms)) { |
| 6056 | USAGE_ERROR_ACTION(ms,ms); |
| 6057 | } |
| 6058 | return internal_mallinfo(ms); |
| 6059 | } |
| 6060 | #endif /* NO_MALLINFO */ |
| 6061 | |
| 6062 | size_t mspace_usable_size(const void* mem) { |
nothing calls this directly
no test coverage detected