zoukankan      html  css  js  c++  java
  • writev/readv


    ```cpp
    #include <sys/uio.h>
    ssize_t readv(int fd, const struct iovec *iov, int iovcnt);
    ssize_t writev(int fd, const struct iovec *iov, int iovcnt);

    struct iovec {
        void *iov_base;  /* Starting address */
        size_t iov_len;  /* Number of bytes to transfer */
    };

    The readv() system call reads iovcnt buffers from the file associated with the file descriptor fd into the buffers described by iov ("scatter input").

    The writev() system call writes iovcnt buffers of data described by iov to the file associated with the file descriptor fd ("gather output").

    ```


    ```cpp
        #include <unistd.h>
        #include <sys/uio.h>
        #include <stdio.h>
        #include <fcntl.h>
        
        int main(int argc, char *argv[])
        {
            ssize_t iSize;
            char acBuf1[9];
            char acBuf2[9];
            struct iovec iov[2];
        
            int iFd1 = open(argv[1], O_RDONLY);
            int iFd2 = open(argv[2], O_RDONLY);
            int iFd3 = open(argv[3], O_WRONLY);
        
            iSize = read(iFd1, acBuf1, sizeof(acBuf1));
            iSize = read(iFd2, acBuf2, sizeof(acBuf2));
        
            iov[0].iov_base = acBuf1;
            iov[0].iov_len = sizeof(acBuf1);
            iov[1].iov_base = acBuf2;
            iov[1].iov_len = sizeof(acBuf2);
        
            iSize = writev(iFd3, iov, 2);
        
            close(iFd1);
            close(iFd2);
            close(iFd3);
            
            return 0;
        }
        
    ```

    建立3个文件(test1, test2, test3)
    test1写入12345
    test2写入asdfghi
    test3为空

    运行
    ./a.out test1 test2 test3






    My Github Blog: mdgsf.github.io
  • 相关阅读:
    第06组 Alpha冲刺(4/6)
    第06组 Alpha冲刺(3/6)
    第06组 Alpha冲刺(2/6)
    第06组 Alpha冲刺(1/6)
    第06组 团队Git现场编程实战
    团队项目-需求分析报告
    团队项目-选题报告
    洛谷3195 玩具装箱(dp,斜率优化)
    CF 1334(edu85) F. Strange Function(线段树,dp)
    CF1325E. Ehab's REAL Number Theory Problem(最小环)
  • 原文地址:https://www.cnblogs.com/mdgsf/p/5208884.html
Copyright © 2011-2022 走看看