- 论坛徽章:
- 0
|
本帖最后由 DIYBYPERL 于 2012-07-16 12:41 编辑
- #include <stdio.h>
- #include <unistd.h>
- #include <sys/types.h>
- #include <sys/wait.h>
- #include <signal.h>
- #include <errno.h>
-
- int main(){
- setbuf(stdout,NULL);
-
- printf("main: %d %d %d\n", getpid(), getpgrp(),getsid(getpid()));
-
- pid_t pid = fork();
- if(pid <0){
- perror("fork");
- return 1;
- }
-
- setpgid(pid,0);/*设置子进程的进程组*/
- if(pid >0){
- sleep(5);
- printf("SETPGID:%d\n",setpgid(pid, getpgrp()));/*设置子进程的进程组*/
- if(kill(pid, SIGCONT) != 0)/*让子进程继续*/
- {
- printf("Kill failed.%d:%s\n",errno,strerror(errno));
- }
- else
- {
- printf("Kill succeded.\n");
- }
- printf("Child Status:%d\n",waitpid(pid,NULL,0));
- printf("Parent exits\n");
- return 0;
- }
-
- /*子进程*/
- char buf[1024];
- printf("child: %d %d %d\n", getpid(), getpgrp(),getsid(getpid()));
- while(fgets(buf,1024, stdin)){
- fputs(buf, stdout);
- }
- printf("Child exits\n");
- return 0;
- }
复制代码 输出如下:‘
yehb:/home/yehb/testc>cc -o a test.c
yehb:/home/yehb/testc>a
main: 11010254 11010254 8126498
child: 7208996 7208996 8126498
SETPGID:0
Kill succeded.
Child Status:7208996
Parent exits |
|