sharedarray.h
来自「内存管理工具Exmap。该工具比 ps 或 top 更精确」· C头文件 代码 · 共 12 行
H
12 行
#include "pagesize.h"extern int do_shared_array_work(void);/* We'd like the arrays big enough that the page granularity doesn't * skew the figures */#define ARRAY_SIZE (CURRENT_PAGE_SIZE * 100)/* And to make it really easy, ask gcc to put things on page boundaries */typedef unsigned char BigArr[ARRAY_SIZE] __attribute__ ((aligned(CURRENT_PAGE_SIZE)));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?