close_on_exec 썸네일형 리스트형 close_on_exec static __inline__ int adb_socketpair( int sv[2] ){ int rc; rc = unix_socketpair( AF_UNIX, SOCK_STREAM, 0, sv ); if (rc < 0) return -1; close_on_exec( sv[0] ); close_on_exec( sv[1] ); return 0;} static __inline__ void close_on_exec(int fd){ fcntl( fd, F_SETFD, FD_CLOEXEC );} #include int execve(const char *filename, char *const argv[], char *const envp[]);함수를 호출하면 기본적으로는 file descriptor 가 open 된 .. 더보기 이전 1 다음