码迷,mamicode.com
首页 > 其他好文 > 详细

jemalooc

时间:2018-03-26 00:51:01      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:clu   def   logs   std   str   log   g++   main   markdown   

g++ main.c -o main -Llib -ljemalloc -ldl -lpthread
#include <stdio.h>
#include <stdlib.h>
#include "include/jemalloc/jemalloc.h"

typedef struct T1
{
    char c[4];
} T1;

void print_my_jemalloc_data(void *opaque, const char *buf);

int main()
{
    //for (int i=0; i<50; ++i)
    //{
    //    void* v = malloc(sizeof(T1));
    //}

    void* v = malloc(sizeof(T1));

    malloc_stats_print(NULL, NULL, NULL);

    return 0;
}

void print_my_jemalloc_data(void *opaque,const char *buf)
{
   printf("%s", buf);
}

jemalooc

标签:clu   def   logs   std   str   log   g++   main   markdown   

原文地址:https://www.cnblogs.com/tomren/p/8647655.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!