⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 allocer.c

📁 内存管理工具Exmap。该工具比 ps 或 top 更精确
💻 C
字号:
/* (c) John Berthels 2005 <jjberthels@gmail.com>. See COPYING for license */#include <stdlib.h>#include <unistd.h>int main(void){     const int malloc_size = 100 * 4096;     const int chunk_size = 2048; /* large allocs don't come from sbrk() */     int total_size;     for (total_size = 0; total_size < malloc_size; total_size += chunk_size) {	  malloc(chunk_size);     }     sleep(60);     return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -