Develop
2003.04.23 10:55

[linux] 프로세스 관련 시스템콜

조회 수 7876 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
system ( ) 함수: 쉘 명령어를 실행시킨다.

예제: system.c
     1  #include <stdlib.h>
     2
     3  main() {
     4      system("/usr/bin/ls  -l");
     5  }

#35 hyundai1:/export/home0/oracle/sql/sql00/c% a.out
총 14
-rwxr-xr-x   1 sql00    sql         5444 11월  6일  20:00 a.out
-rw-r--r--   1 sql00    sql           60 11월  6일  20:00 system.c


--------------------------------------------------------------------------------

execl ( ) 함수: 프로그램을 실행시킨다.

예제: execl.c
     1  main() {
     2      int pid;
     3      int status;
     4
     5      pid = fork();
     6      if(pid > 0) {
     7          wait(&status);
     8      } else if(pid == 0) {
     9          execl("/usr/bin/ls", "ls", "-l", 0);
    10      } else {
    11          printf("fork error.n");
    12      }
    13  }

#97 hyundai1:/export/home0/oracle/sql/sql00/c% a.out
총 26
-rwxr-xr-x   1 sql00    sql         5736 11월  6일  21:11 a.out
-rw-r--r--   1 sql00    sql          185 11월  6일  21:11 execl.c
-rw-r--r--   1 sql00    sql           69 11월  6일  20:03 fork.c
-rw-r--r--   1 sql00    sql          196 11월  6일  21:03 fork2.c
-rw-r--r--   1 sql00    sql          213 11월  6일  21:03 fork3.c
-rw-r--r--   1 sql00    sql         1736 11월  6일  21:08 process.html
-rw-r--r--   1 sql00    sql           60 11월  6일  20:00 system.c
<xmp>


--------------------------------------------------------------------------------

fork ( ) 함수: 새로운 프로세스를 생성한다.

예제: fork1.c
     1  main() {
     2      int pid;
     3
     4      pid =  fork();
     5      printf("my pid = %dn", pid);
     6  }

#43 hyundai1:/export/home0/oracle/sql/sql00/c% a.out
my pid = 0
my pid = 9015

예제: fork2.c
     1  main() {
     2      int pid;
     3
     4      pid =  fork();
     5      if(pid > 0) {
     6          printf("I am parent.n");
     7      } else if(pid == 0) {
     8          sleep(1);
     9          printf("I am child.n");
    10      } else {
    11          printf("fork error.n");
    12      }
    13  }

#75 hyundai1:/export/home0/oracle/sql/sql00/c% a.out
I am parent.
#76 hyundai1:/export/home0/oracle/sql/sql00/c% I am child.


--------------------------------------------------------------------------------

wait ( ) 함수: 부모 프로세스가 자식 프로세스가 종료될 때까지 기다린다.

예제: fork3.c
     1  main() {
     2      int pid;
     3      int status;
     4
     5      pid =  fork();
     6      if(pid > 0) {
     7          printf("I am parent.n");
     8          wait(&status);
     9      } else if(pid == 0) {
    10          sleep(2);
    11          printf("I am child.n");
    12      } else {
    13          printf("fork error.n");
    14      }
    15  }

#87 hyundai1:/export/home0/oracle/sql/sql00/c% a.out
I am parent.
I am child.


--------------------------------------------------------------------------------

atexit ( ) 함수: 프로그램이 종료되기 전에 atexit에 등록된 함수가 수행된다.

사용법
        #include 
        int atexit(void (*func)(void));

예제: atexit.c
     1  #include <stdio.h>
     2  #include <stdlib.h>
     3
     4  void cleanup() {
     5      printf("Clean up before exit.n");
     6  }
     7
     8  main() {
     9      atexit(cleanup);
    10      printf("Hello World !!n");
    11  }

#19 enterprise:/data1/student/c9844000% a.out
Hello World !!
Clean up before exit.

?

  1. [linux] 프로세스의 stat 상태에 대한 설명

    Date2013.04.23 CategorySystem/OS Byhooni Views10843
    Read More
  2. [linux] 프로세스 상태확인(ps)

    Date2003.04.23 CategorySystem/OS Byhooni Views12791
    Read More
  3. [linux] 프로세스 관련 시스템콜

    Date2003.04.23 CategoryDevelop Byhooni Views7876
    Read More
  4. [linux] 프로그램 설치방법 (내공쌓기)

    Date2003.04.23 CategorySystem/OS Byhooni Views13498
    Read More
  5. [linux] 패킷의 소스 주소 바꾸기

    Date2003.04.23 CategorySystem/OS Byhooni Views18868
    Read More
  6. [linux] 패킷 스니퍼링

    Date2003.04.23 CategorySystem/OS Byhooni Views16392
    Read More
  7. [linux] 파일내 문자열 찾아 바꾸기

    Date2013.04.23 CategorySystem/OS Byhooni Views12275
    Read More
  8. [linux] 특정 문자열 포함된 파일 찾는 명령어

    Date2013.10.16 CategorySystem/OS Byhooni Views30729
    Read More
  9. [linux] 특수문자 환경 설정(stty)

    Date2003.04.23 CategorySystem/OS Byhooni Views15356
    Read More
  10. [linux] 텔넷, FTP 텍스트 모드에서 사용

    Date2003.04.23 CategorySystem/OS Byhooni Views12010
    Read More
  11. [linux] 터미널에서 문자 깨질 때 설정 ㅋㅋ

    Date2003.04.23 CategorySystem/OS Byhooni Views13970
    Read More
  12. [linux] 콘솔/Xwindow 에서 PC스피커 소리 없애기

    Date2003.04.23 CategorySystem/OS Byhooni Views16429
    Read More
  13. [linux] 콘솔 기본언어 설정 방법

    Date2013.04.23 CategorySystem/OS Byhooni Views12887
    Read More
  14. [linux] 커널 컴파일, 설정

    Date2003.04.23 CategorySystem/OS Byhooni Views17920
    Read More
  15. [linux] 최소한의 커널 설정(커널설치 전체과정)

    Date2003.04.23 CategorySystem/OS Byhooni Views17520
    Read More
  16. [linux] 초간단 SquirrelMail 설치/설정 (다람쥐 메일)

    Date2017.12.11 CategorySystem/OS Byhooni Views4621
    Read More
Board Pagination Prev 1 ... 18 19 20 21 22 ... 74 Next
/ 74