⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 p13.10.c

📁 《linux编程技术详解》 linux编程入门的好书
💻 C
字号:
#include <stdio.h>#include <sys/time.h>#include <sys/types.h>#include <unistd.h>intmain(void) {     fd_set rfds;     struct timeval tv;     int retval;     /* Watch stdin (fd 0) to see when it has input. */     FD_ZERO(&rfds);     FD_SET(0, &rfds);     /* Wait up to five seconds. */     tv.tv_sec = 5;     tv.tv_usec = 0;     retval = select(1, &rfds, NULL, NULL, &tv);     /* Don’t rely on the value of tv now! */     if (retval == -1)         perror("select()");      else if (retval)         printf("Data is available now.\n");   /* FD_ISSET(0, &rfds) will be true. */     else         printf("No data within five seconds.\n");     return 0; }

⌨️ 快捷键说明

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