当前位置: 技术问答>linux和unix
关于进程组的问题 有代码 谢谢先
来源: 互联网 发布时间:2015-04-24
本文导语: 我创建了几个子进程,然后让他们创建加入到一个新的进程组中去。源代码如下 main() { int shmid; int pid; int *t; int d; printf("the father pid is %d,my father is %d,my term is %dn", getpid(),getppid(),getpgrp()); shmid=shmge...
我创建了几个子进程,然后让他们创建加入到一个新的进程组中去。源代码如下
main()
{ int shmid;
int pid;
int *t;
int d;
printf("the father pid is %d,my father is %d,my term is %dn",
getpid(),getppid(),getpgrp());
shmid=shmget(100,10,IPC_CREAT|0666);
t=shmat(shmid,NULL,0);
*t=0;
for(d=1;d
main()
{ int shmid;
int pid;
int *t;
int d;
printf("the father pid is %d,my father is %d,my term is %dn",
getpid(),getppid(),getpgrp());
shmid=shmget(100,10,IPC_CREAT|0666);
t=shmat(shmid,NULL,0);
*t=0;
for(d=1;d