代码拉取完成,页面将自动刷新
/*
wrapper functions for system malloc -- keep malloc stats.
Truilkan@TMI - 92/04/17
*/
#define IN_MALLOC_WRAPPER
#define NO_OPCODES
#include "std.h"
#include "my_malloc.h"
#include "lpc_incl.h"
#include "comm.h"
typedef struct stats_s {
unsigned int free_calls, alloc_calls, realloc_calls;
} stats_t;
static stats_t stats;
void wrappedmalloc_init()
{
stats.free_calls = 0;
stats.alloc_calls = 0;
stats.realloc_calls = 0;
}
INLINE void *wrappedrealloc P2(void *, ptr, int, size)
{
stats.realloc_calls++;
return (void *) REALLOC(ptr, size);
}
INLINE void *wrappedmalloc P1(int, size)
{
stats.alloc_calls++;
return (void *) MALLOC(size);
}
INLINE void *wrappedcalloc P2(int, nitems, int, size)
{
stats.alloc_calls++;
return (void *) CALLOC(nitems, size);
}
INLINE void wrappedfree P1(void *, ptr)
{
stats.free_calls++;
FREE(ptr);
}
void dump_malloc_data P1(outbuffer_t *, ob)
{
outbuf_add(ob, "using wrapped malloc:\n\n");
outbuf_addv(ob, "#alloc calls: %10lu\n", stats.alloc_calls);
outbuf_addv(ob, "#free calls: %10lu\n", stats.free_calls);
outbuf_addv(ob, "#alloc - #free: %10lu\n",
stats.alloc_calls - stats.free_calls);
outbuf_addv(ob, "#realloc calls: %10lu\n", stats.realloc_calls);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。