我想检查我所拥有的pid进程是否是从内核扩展运行的。在用户空间中,这很简单:printf("Process %d is running\n", pid);printf("Process %d is not running\n", pid);printf("This shouldn't happen oO\n"
无效过程()我只想创建一个子进程,而不对它做任何事情。我只希望它活着,什么也不做,而我的应用程序的main()将按我的意愿工作。在我的应用程序的main()的某个时候,我将杀死子进程,然后再恢复它。0) /* fork() returns 0 to the child process */ printf("CHILD PID: %d\n", getpid()); /