asynctest.c

来自「linux driver edition」· C语言 代码 · 共 47 行

C
47
字号
/* * asynctest.c: use async notification to read stdin */#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#include <signal.h>#include <fcntl.h>int gotdata=0;void sighandler(int signo){    if (signo==SIGIO)        gotdata++;    return;}char buffer[4096];int main(int argc, char **argv){    int count;    struct sigaction action;    memset(&action, 0, sizeof(action));    action.sa_handler = sighandler;    action.sa_flags = 0;    sigaction(SIGIO, &action, NULL);    fcntl(STDIN_FILENO, F_SETOWN, getpid());    fcntl(STDIN_FILENO, F_SETFL, fcntl(STDIN_FILENO, F_GETFL) | FASYNC);    while(1) {        /* this only returns if a signal arrives */        sleep(86400); /* one day */        if (!gotdata)            continue;        count=read(0, buffer, 4096);        /* buggy: if avail data is more than 4kbytes... */        write(1,buffer,count);        gotdata=0;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?