fork-exec로 실행한 프로그램의 리턴값을 받는 방법이다.
예를 들어 mount를 쉘에서 실행하고 그 결과값을 받고 싶을때 사용한다.
[링크 : http://www.joinc.co.kr/modules/moniwiki/wiki.php/man/2/waitpid]
예를 들어 mount를 쉘에서 실행하고 그 결과값을 받고 싶을때 사용한다.
#include <sys/types.h> #include <sys/wait.h> WEXITSTATUS(status) returns the exit status of the child. This consists of the least significant 16-8 bits of the status argument that the child specified in a call to exit() or _exit() or as the argument for a return statement in main(). This macro should only be employed if WIFEXITED returned true. [링크 : http://linux.die.net/man/2/waitpid] |
[링크 : http://www.joinc.co.kr/modules/moniwiki/wiki.php/man/2/waitpid]
'Linux' 카테고리의 다른 글
dynamic link - ldconfig, /etc/ld.so.conf.d, LD_LIBRARY_PATH, pkg-config, (0) | 2010.01.14 |
---|---|
linux에 연결된 HDD의 IO 상태보기 (0) | 2010.01.11 |
mount.cifs mount.ntfs 등 자동연결의 비밀(?) (0) | 2010.01.08 |
ntfs-3g 크로스 컴파일 하기 (ntfs-3g cross compile) (0) | 2010.01.07 |
FUSE 넌 머냐? (0) | 2010.01.07 |