📄 closeonexec.c
字号:
/* $Revision: 1.5 $***/#include "configdata.h"#include <stdio.h>#include <sys/types.h>#include <errno.h>#include "clibrary.h"#if defined(CLX_IOCTL)#include <sgtty.h>/*** Mark a file close-on-exec so that it doesn't get shared with our** children. Ignore any error codes.*/voidCloseOnExec(fd, flag) int fd; int flag;{ int oerrno; oerrno = errno; (void)ioctl(fd, flag ? FIOCLEX : FIONCLEX, (char *)NULL); errno = oerrno;}#endif /* defined(CLX_IOCTL) */#if defined(CLX_FCNTL)#include <fcntl.h>/*** Mark a file close-on-exec so that it doesn't get shared with our** children. Ignore any error codes.*/voidCloseOnExec(fd, flag) int fd; int flag;{ int oerrno; oerrno = errno; (void)fcntl(fd, F_SETFD, flag ? 1 : 0); errno = oerrno;}#endif /* defined(CLX_FCNTL) */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -