タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

aioとlibeioに関するdannのブックマーク (1)

  • libeioのサンプルコード - shutdown -r now

    「libeio」は、C言語で書かれた非同期I/Oライブラリです。 実装的には、キューとスレッドプールを使い、I/Oを非同期並行処理します。 先程の「Boost application performance using asynchronous I/O」の図の右下(Asynchronous + Non-blocking)に「libeio」は位置するのではないかと思います。 libeioのサンプル 以下、libeioに含まれるdemo.cから抜粋したサンプルです。 #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <poll.h> #include <string.h> #include <assert.h> #include <fcntl.h> #include <sys/types.h> #includ

    libeioのサンプルコード - shutdown -r now
  • 1