setsid
作者:互联网
setsid命令
linux常用的命令 setsid命令的一般格式: setsid();说明
当进程是会话的领头进程时setsid()调用失败并返回(-1)。setsid()调用成功后,返回新的会话的ID,调用setsid函数的进程成为新的会话的领头进程,并与其父进程的会话组和进程组脱离。由于会话对控制终端的独占性,进程同时与控制终端脱离。 pid_t pid = fork(); //fork a process if (pid < 0) exit(0); //fork error if (pid > 0) exit(0); //father process exit setsid(); //create a new session for a process //之前parent和child运行在同一个session里,parent是会话(session)的领头进程, //parent进程作为会话的领头进程,如果exit结束执行的话,那么子进程会成为孤儿进程,并被init收养。 //执行setsid()之后,child将重新获得一个新的会话(session)id。 //这时parent退出之后,将不会影响到child了。标签:parent,pid,setsid,session,exit,进程 来源: https://www.cnblogs.com/onlylingfeng/p/16521636.html