HomeServer/skynet-src/malloc_hook.h

21 lines
628 B
C
Raw Normal View History

2024-11-20 15:41:09 +08:00
#ifndef SKYNET_MALLOC_HOOK_H
#define SKYNET_MALLOC_HOOK_H
#include <stdlib.h>
#include <stdbool.h>
#include <lua.h>
extern size_t malloc_used_memory(void);
extern size_t malloc_memory_block(void);
extern void memory_info_dump(const char *opts);
extern size_t mallctl_int64(const char* name, size_t* newval);
extern int mallctl_opt(const char* name, int* newval);
extern bool mallctl_bool(const char* name, bool* newval);
extern int mallctl_cmd(const char* name);
extern void dump_c_mem(void);
extern int dump_mem_lua(lua_State *L);
extern size_t malloc_current_memory(void);
#endif /* SKYNET_MALLOC_HOOK_H */