dup和dup2

Posted muzihuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dup和dup2相关的知识,希望对你有一定的参考价值。

功能:复制一个文件描述符

#include <unistd.h>

int dup(int oldfd);

int dup2(int oldfd , int newfd);

dup:不是原子操作

dup2:是原子操作

If oldfd is not a valid file descriptor, then the call fails, and newfd is not closed.

当旧fd不是一个有效的文件描述符,那么调用失败,新的描述符不会关闭。

If oldfd is a valid file descriptor, and newfd has the same value as oldfd, then dup2() does nothing,and returns newfd.

当旧fd是个有效的描述符,新描述符和旧文件描述符值相同,但么dup2不操作,返回新文件描述符。

#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#define FNAME   "/tmp/out"

int main()
{
    int fd ;
    fd = open(FNAME , O_WRONLY | O_CREAT | O_TRUNC ,0600);
    if(fd < 0)
    {
        perror("open()");
        exit(1);
    }
    /******非原子操作*****/
    //close(1);
    //dup(fd);    
    /********原子操作******/
    dup2(fd , 1 );
    if(fd !=1)
        close(fd);
    puts("hello");
    exit(0);
}

 

以上是关于dup和dup2的主要内容,如果未能解决你的问题,请参考以下文章

dup/dup2

dup/dup2输出重定向

dup和dup2函数

文件IO详解(十四)---dup函数和dup2函数详解

Linux dup dup2函数理解

对 dup2 使用排序