【发布时间】:2012-03-15 19:16:22
【问题描述】:
Linux3.2.0
鉴于以下来源:
#include <stdio.h>
#include <sched.h>
int main(void)
{
printf("%i \n", CLONE_PTRACE);
return 0;
}
我明白了:
test.c:在函数“main”中: test.c:6:18: error: ‘CLONE_PTRACE’ undeclared (第一次在这个函数中使用)
为什么?
【问题讨论】: