K 개발자

프로세스 종료 본문

유닉스(Unix)/시스템 프로그래밍

프로세스 종료

ddingz 2021. 8. 18. 16:56

프로세스 종료 함수

프로그램 종료 : exit(2)

#include <stdlib.h>

void exit(int status);
// status : 종료 상태값

프로그램 종료 시 수행할 작업 예약 : atexit(3)

#include <stdlib.h>

int atexit(void (*func)(void));
// func : 종료 시 수행할 작업을 지정한 함수명

프로그램 종료 : _exit(2)

#include <unistd.h>

void _exit(int status);
// status : 종료 상태값

'유닉스(Unix) > 시스템 프로그래밍' 카테고리의 다른 글

프로세스 동기화  (0) 2021.08.19
exec 함수군 활용  (0) 2021.08.19
프로세스 생성  (0) 2021.08.18
환경 변수의 활용  (0) 2021.08.18
프로세스 실행 시간 측정  (0) 2021.08.17
Comments