パーソナルツール
現在の場所: ホーム オペレーティングシステム論 演習 2007年度 第2回 fork.c
文書操作

fork.c

作成者 管理者 最終変更日時 2007年05月07日 17時10分

Click here to get the file

サイズ 1 kB - File type text/x-csrc

ファイルのコンテンツ

#include <stdio.h>
#include <stdlib.h>      /* For EXIT_SUCCESS. */
#include <sys/types.h>   /* For pid_t. */

int main(int argc, char *argv[]){
    pid_t       pid;

    fprintf(stderr, "pid: %d.\n", getpid()); 
    fprintf(stderr, "fork(): %d.\n", fork());
    fprintf(stderr, "pid: %d.\n", getpid()); 
    fprintf(stdout, "Hello world.\n"); 

    exit(EXIT_SUCCESS);
}