Linux에서 fork()를 통해 여러 프로세스를 동시에 생성

1835 단어 linux
1. 시스템 호출 포크()를 사용하여 세 개의 하위 프로세스를 만든다.
2. 각 하위 프로세스가 알림 정보와 자신의 프로세스 식별자를 표시하고 출력한다.
3. 부모 프로세스는 자신의 프로세스 ID와 알림 정보를 표시하고waitpid()를 호출하여 여러 개의 하위 프로세스가 끝날 때까지 기다린다. 그리고 하위 프로세스가 끝난 후에 출력 알림 정보를 표시하면 프로그램이 끝날 것을 나타낸다.
#include 
#include 
#include 
#include 
#include 
#include 
#include 

int tprintf(const char *fmt,...);

int main(void)
{
	printf("I'm your father,PID is %d.
",getpid()); pid_t pid = fork(); if(pid == 0){ printf("I'm a first son.PID is %d.
",getpid()); exit(1);// exit(1), pid_t pid2 = fork() , printf("You should never see this.
"); } pid_t pid2 = fork(); if(pid2 == 0){ printf("I'm a second son.PID is %d.
",getpid()); exit(1); printf("You should never see this.
"); } pid_t pid3 = fork(); if(pid3 ==0){ printf("I'm a third son.PID is %d.
",getpid()); exit(1); printf("You should never see this.
"); } else if(pid != -1){ tprintf("Parent forked child process--%d.
",pid); tprintf("Parent is waiting for child to exit.
"); waitpid(pid,NULL,0); waitpid(pid2,NULL,0); waitpid(pid3,NULL,0); tprintf("Child Process had exited.
"); tprintf("Parent had exited.
"); } else tprintf("Everything was done without error.
"); return 0; } /* * */ int tprintf(const char* fmt,...) { va_list args; struct tm *tstruct; time_t tsec; tsec = time(NULL); tstruct = localtime(&tsec); printf("%02d:%02d:%02d:%5d|",tstruct->tm_hour,tstruct->tm_min,tstruct->tm_sec,getpid()); va_start(args,fmt); return vprintf(fmt,args); }

좋은 웹페이지 즐겨찾기