标签: c linux
我首先尝试使用此问题中的代码:Creating a daemon in Linux
但我得到了一个由fgetc电话引起的SIGFAULT。
SIGFAULT
然后我尝试了int daemon(int nochdir, int noclose);功能,看起来效果很好。
int daemon(int nochdir, int noclose);
此外,使用ps -xj,我可以看到链接问题的答案中描述的行为,因此它确实按照我的意愿工作。
ps -xj
这两种方式之间的区别是什么?