工作程式碼片段-aio

來源:互聯網
上載者:User

aio是linux上的非同步IO實現,具體測試代碼如下:

    aiocb ab;    bzero( (char *)&ab, sizeof(struct aiocb) );    int fd = open("a.txt", O_RDWR | O_APPEND);    ab.aio_buf = malloc(201);    ab.aio_fildes = fd;    ab.aio_nbytes = 20;    ab.aio_offset = 0;    int r = aio_read(&ab);    std::cout << "return:" << r << std::endl;    std::cout << "buff:" << (char *)ab.aio_buf << std::endl;    r = aio_return(&ab);    std::cout << "return:" << r << std::endl;    char *b = "good boy!!";    ab.aio_buf = b;    aio_write(&ab);

關鍵點在於,struct aiocb結構體的填充。

aio通知機制:

訊號

  ab.aio_sigevent.sigev_notify = SIGEV_SIGNAL;  ab.aio_sigevent.sigev_signo = SIGIO;  ab.aio_sigevent.sigev_value.sival_ptr = &ab;

線程

  acb.aio_sigevent.sigev_notify = SIGEV_THREAD;  acb.aio_sigevent._sigev_un._sigev_thread._function = rw;  acb.aio_sigevent._sigev_un._sigev_thread._attribute = NULL;  acb.aio_sigevent.sigev_value.sival_ptr = &acb;

可能因為不同版本的標頭檔提供的介面有所不同,網上有些資料說的是acb.aio_sigevent.notify_function,但我在實際應用中沒有找到他的定義。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.