?? sharedarray.h
字號(hào):
#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)));
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -