tos.h

来自「在x86平台上运行不可信任代码的sandbox。」· C头文件 代码 · 共 24 行

H
24
字号
typedef struct Tos Tos;typedef struct Plink Plink;struct Tos {	struct			/* Per process profiling */	{		Plink	*pp;	/* known to be 0(ptr) */		Plink	*next;	/* known to be 4(ptr) */		Plink	*last;		Plink	*first;		ulong	pid;		ulong	what;	} prof;	uvlong	cyclefreq;	/* cycle clock frequency if there is one, 0 otherwise */	vlong	kcycles;	/* cycles spent in kernel */	vlong	pcycles;	/* cycles spent in process (kernel + user) */	ulong	pid;		/* might as well put the pid here */	ulong	clock;	/* top of stack is here */};extern Tos *_tos;

⌨️ 快捷键说明

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