亚洲韩日午夜视频,欧美日韩在线精品一区二区三区,韩国超清无码一区二区三区,亚洲国产成人影院播放,久草新在线,在线看片AV色

您好,歡迎來到思海網絡,我們將竭誠為您提供優質的服務! 誠征網絡推廣 | 網站備案 | 幫助中心 | 軟件下載 | 購買流程 | 付款方式 | 聯系我們 [ 會員登錄/注冊 ]
促銷推廣
客服中心
業務咨詢
有事點擊這里…  531199185
有事點擊這里…  61352289
點擊這里給我發消息  81721488
有事點擊這里…  376585780
有事點擊這里…  872642803
有事點擊這里…  459248018
有事點擊這里…  61352288
有事點擊這里…  380791050
技術支持
有事點擊這里…  714236853
有事點擊這里…  719304487
有事點擊這里…  1208894568
有事點擊這里…  61352289
在線客服
有事點擊這里…  531199185
有事點擊這里…  61352288
有事點擊這里…  983054746
有事點擊這里…  893984210
當前位置:首頁 >> 技術文章 >> 文章瀏覽
技術文章

unix/Linux低級IO函數的用法

添加時間:2014-1-3 17:48:24  添加: 思海網絡 

unix/Linux 低級IO函數的用法,必須掌握

    寫module ,必要的應用編程知識是應該要有的, 否則 ,怎么寫應用程序來測試你的module或者driver呢?

    而且最主要的是 , 了解上層調用的接口, 你就明白了上層的開發者需要什么, 自己才好實現什么。

    把手里的看書的事情都放下, 先把 Unix環境高級編程這本書 的第三章 徹底搞熟它

    內容包括:

    open() ,尤其是各種常見的參數,到底是什么意思, 比如常用創建一個空文件: fd = open("/tmp/xx.txt",O_RDWR | O_CREAT | O_TRUNC);

    讀一個文件,fd = open("/dev/hello",O_RDONLY );

    如果就是要寫一個既有的文件,fd = open("/dev/hello",O_WRONLY );

    具體的參數: man 2 open

    read(),

    write()

    ioctl()  ,這個最重要。

    lseek() , 文件指針移動

    比如下面的例子:

    就是簡單的讀一個文件:

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

    int main(int argc,char **argv)
    {
            int fd = 0;
            int pid = 0;
            char buffer[20] = {'\0'};
            char *read_buffer[20] = {'\0'};

            //fd = open("/dev/hello",O_RDWR | O_CREAT | O_TRUNC);
            fd = open("/dev/hello",O_RDONLY ); //| O_NONBLOCK);
            printf("fd=%d\n",fd);
            if(fd < 0) {
                    perror("/dev/hello");
                    return -1;
            }

            read(fd,read_buffer,sizeof(read_buffer)-1);
            printf("read_buffer=%s\n",read_buffer);


            close(fd);

            return 0;
    }

下面這個就是簡單的寫一個文件 ,

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

    int main(int argc,char **argv)
    {
            int fd = 0;
            int pid = 0;
            char buffer[20] = {'\0'};
            char write_buffer[20] = {'\0'};

            strcpy(write_buffer,"zhanglinbao");

            fd = open("/dev/hello",O_RDWR | O_CREAT | O_TRUNC);
            //fd = open("/dev/hello",O_RDONLY);
            printf("fd=%d\n",fd);
            if(fd < 0) {
                    perror("/dev/hello");
                    return -1;
            }

            write(fd,write_buffer,sizeof(write_buffer)-1);

            close(fd);

            return 0;
    }

關鍵字:Linux、IO函數、高級編程

分享到:

頂部 】 【 關閉
版權所有:佛山思海電腦網絡有限公司 ©1998-2024 All Rights Reserved.
聯系電話:(0757)22630313、22633833
中華人民共和國增值電信業務經營許可證: 粵B1.B2-20030321 備案號:粵B2-20030321-1
網站公安備案編號:44060602000007 交互式欄目專項備案編號:200303DD003  
察察 工商 網安 舉報有獎  警警  手機打開網站