标题:系统调用 dup2 的实现
只看楼主
madfrogme
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:21
帖 子:1160
专家分:1106
注 册:2009-6-24
结帖率:98.63%
 问题点数:0 回复次数:2 
系统调用 dup2 的实现
程序代码:
#include <fcntl.h>

int dup2(int fd1, int fd2) {
    
    if( fd1 != fd2 ) {

        /* check to make sure that fd1 is a valid open
         * file descriptor
         */
        if ( fcntl( fd1, F_GETFL) < 0 )

            return -1;

        /* check to see if fd2 is already open;
         * if so, close it
         */
        if( fcntl( fd2, F_GETFL) >= 0 )

            close ( fd2 );

        if(fcntl ( fd1, F_DUPFD, fd2 ) < 0)

            return -1;
    }

    return fd2;
}
搜索更多相关主题的帖子: 系统 already include return 
2012-08-29 16:49
pangding
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:北京
等 级:贵宾
威 望:94
帖 子:6784
专家分:16751
注 册:2008-12-20
得分:0 
不错。

你在这发的这些东西是你们学的,还是你自己研究的?
2012-08-30 01:55
madfrogme
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:21
帖 子:1160
专家分:1106
注 册:2009-6-24
得分:0 
以下是引用pangding在2012-8-30 02:55:00的发言:

不错。

你在这发的这些东西是你们学的,还是你自己研究的?

都是我自己在瞎倒腾而已

The quieter you become, the more you can hear
2012-08-30 07:02



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-380311-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.108860 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved