fd_copy.c

来自「daemontools-0.76.tar.gz是在linux环境下自动监控进程的」· C语言 代码 · 共 15 行

C
15
字号
/* Public domain. */#include <unistd.h>#include <fcntl.h>#include "fd.h"int fd_copy(int to,int from){  if (to == from) return 0;  if (fcntl(from,F_GETFL,0) == -1) return -1;  close(to);  if (fcntl(from,F_DUPFD,to) == -1) return -1;  return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?