profile.c
来自「用于嵌入式Linux系统的标准C的库函数」· C语言 代码 · 共 13 行
C
13 行
/* libc/sys/linux/profile.c - profiling system call */#include <errno.h>#include <sys/types.h>#include <machine/syscall.h>#define __NR_profil 98int profil(u_short *buf, size_t bufsiz, size_t offset, u_int scale);_syscall4(int,profil,unsigned short *,buf,size_t,bufsiz,size_t,offset,unsigned int, scale)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?