我想编写一个简单的“C”程序来查找操作系统启动后的系统调用次数。我正在关注其他系统调用,如 fork() 或 getpid() 并且基本上复制了他们的大部分内容。我不确定应该在哪里/何时增加我的计数器?有什么例子吗?
在 kernel/syscall.c 中定义计数器并相应地增加它是一个好主意吗?
void
syscall(void)
{
int num;
counter++; //mona
num = proc->tf->eax;
if(num > 0 && num < NELEM(syscalls) && syscalls[num] != NULL) {
proc->tf->eax = syscalls[num]();
} else {
cprintf("%d %s: unknown sys call %d\n",
proc->pid, proc->name, num);
proc->tf->eax = -1;
}
}
这也是我到目前为止在 kernel/sysproc.c 中为我的微不足道的系统调用获得的代码:
sys_getsyscallinfo(void)
{
return counter; //mona
}
但是我收到此错误:
kernel/sysproc.c: In function ‘sys_getsyscallinfo’:
kernel/sysproc.c:48: error: ‘counter’ undeclared (first use in this function)
kernel/sysproc.c:48: error: (Each undeclared identifier is reported only once
kernel/sysproc.c:48: error: for each function it appears in.)
make: *** [kernel/sysproc.o] Error 1