| 250 | } |
| 251 | |
| 252 | void *srealloc(void *pv, size_t cb, enum MALLOC_CLASS mclass) |
| 253 | { |
| 254 | return memkind_realloc(kindFromClass(mclass), pv, cb); |
| 255 | } |
| 256 | |
| 257 | int fdNew = -1; |
| 258 | void handle_prefork() |
nothing calls this directly
no test coverage detected