| 5984 | |
| 5985 | #if !NO_MALLOC_STATS |
| 5986 | void mspace_malloc_stats(mspace msp) { |
| 5987 | mstate ms = (mstate)msp; |
| 5988 | if (ok_magic(ms)) { |
| 5989 | internal_malloc_stats(ms); |
| 5990 | } |
| 5991 | else { |
| 5992 | USAGE_ERROR_ACTION(ms,ms); |
| 5993 | } |
| 5994 | } |
| 5995 | #endif /* NO_MALLOC_STATS */ |
| 5996 | |
| 5997 | size_t mspace_footprint(mspace msp) { |
nothing calls this directly
no test coverage detected