2012. 7. 13. 16:12
vfork() 자식프로세스가 exit나 exec를 호출할 때 까지 부모 프로세스는 실행되지 않고 기다린다.
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
main()
{
pid_t pid;
/* vfork를 이용해 자식 프로세스 생성 */
if ((pid=vfork()) == -1)
perror("fork failed");
/* 부모 프로세스는 자식 프로세스가 exit 호출을 한 후에 동작 */
else if (pid != 0)
printf("PID is %ld, child process pid is %ld\n", getpid(), pid);
/* 자식 프로세스는 곧바로 실행 */
else {
printf("PID is %ld, parent process pid is %ld\n", getpid(), getppid());
exit(0);
}
}
'EMBEDDED > SYSTEM Proc' 카테고리의 다른 글
[Process] atexit() 함수에 관한 예제 (0) | 2012.07.13 |
---|---|
[Process] exit()함수에 관한 예제 (0) | 2012.07.13 |
[Process] getpid(), getppid() 에 관한 예제 (0) | 2012.07.13 |
[Process] fork()의 간단한 예제2 (0) | 2012.07.13 |
[Process] fork()의 간단한 예제1 (0) | 2012.07.13 |