设置进程组识别码
getpgid,setpgid,getpgrp
#include<unistd.h>
int setpgrp(void);
setpgrp()将目前进程所属的组识别码设为目前进程的进程识别码。此函数相当于调用setpgid(0,0)。
执行成功则返回组识别码,如果有错误则返回-1,错误原因存于errno中。