函数原型

  /* According to POSIX.1-2001 */
#include <sys/select.h>  //头文件 /* According to earlier standards */
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h> int select(int nfds, fd_set *readfds, fd_set *writefds,
fd_set *exceptfds, struct timeval *timeout);//函数原型

描写叙述

       Three independent sets of file descriptors are watched.  Those listed in readfds will be watched to see if characters  become  avail‐
able for reading (more precisely, to see if a read will not block; in particular, a file descriptor is also ready on end-of-file),
those in writefds will be watched to see if a write will not block, and those in exceptfds will be watched for exceptions. On exit,
the sets are modified in place to indicate which file descriptors actually changed status. Each of the three file descriptor sets
may be specified as NULL if no file descriptors are to be watched for the corresponding class of events.
//该函数同意进程指示等待多个事件的不论什么一个发生。而且仅仅在有一个或多个事件发生或者经历一段指定的时间后才唤醒它
它仅仅有在例如以下四种情况下返回
1. 集合中的不论什么描写叙述符准备好读
2. 集合中的不论什么描写叙述符准备好谢
3. 集合中的不论什么描写叙述符有异常等待处理
4. 等待事件到达
       The time structures involved are defined in <sys/time.h> and look like

           struct timeval {
long tv_sec; /* seconds */
long tv_usec; /* microseconds */
};

等待事件这个參数有三种可能

1.永远灯下去。仅在有一个描写叙述符准备好才返回。为此。我们把该參数设置为空指针

2.等待一段固定时间。在有一个描写叙述符准好好I/O才返回,可是不能超时;

3. 不等待,检查描写叙述符后马上返回,这时定时器的时间必须设置为0

返回值:

(1)正常情况下返回满足要求的文件描写叙述符个数。

(2)经过了timeout等待后仍无文件满足要求。返回0。

(3)假设select被某个信号中断,将返回-1并设置errno为EINTR;

(4)若出错。返回-1并设置对应的errno。

select的用法:

(1)将要监控的文件加入到文件描写叙述符集。

(2)调用select開始监控;

(3)推断文件是否发生变化;

系统提供四个宏对描写叙述符集进行操作:

void FD_SET(int fd, fd_set *fdset); //将文件描写叙述符fd加入到文件描写叙述符集fdset中。
void FD_CLR(int fd, fd_set *fdset); //从文件描写叙述符集fdset中清除文件描写叙述符fd;
void FD_ISSET(int fd, fd_set *fdset); //在调用select后使用FD_ISSET来检測文件描写叙述符集中的文件fd发生了变化
void FD_ZERO(fd_set *fdset);//清空文件描写叙述符集

以下看个样例。用select来监视stdin看何时有输入

root@wl-Lenovo-B590:/myworkspace/anvancdedprogramminginunix/mysourcecode/chapter11#   cat -n select.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <sys/time.h>
4 #include <sys/types.h>
5 #include <unistd.h>
6
7 int
8 main(void)
9 {
10 fd_set rfds;
11 struct timeval tv;
12 int retval;
13
14 /* Watch stdin (fd 0) to see when it has input. */
15 FD_ZERO(&rfds);
16 FD_SET(0, &rfds);
17
18 /* Wait up to five seconds. */
19 tv.tv_sec = 5;
20 tv.tv_usec = 0;
21
22 retval = select(1, &rfds, NULL, NULL, &tv);
23 /* Don't rely on the value of tv now! */
24
25 if (retval == -1)
26 perror("select()");
27 else if (retval)
28 printf("Data is available now.\n");
29 /* FD_ISSET(0, &rfds) will be true. */
30 else
31 printf("No data within five seconds.\n");
32
33 exit(EXIT_SUCCESS);
34 }

编译后执行结果如图:

能够看到,五秒不输入则到达定时时间。有输入则会捕捉到

參考: UNIX网络编程

Linux Programmer's Manual

linux 下的select函数的更多相关文章

  1. linux c语言 select函数用法

    linux c语言 select函数用法 表头文件 #i nclude<sys/time.h> #i nclude<sys/types.h> #i nclude<unis ...

  2. linux c语言 select函数使用方法

    linux c语言 select函数使用方法 表头文件 #i nclude<sys/time.h> #i nclude<sys/types.h> #i nclude<un ...

  3. Linux下利用ioctl函数获取网卡信息

    linux下的ioctl函数原型如下: #include <sys/ioctl.h> int ioctl(int handle, int cmd, [int *argc, int argv ...

  4. 【C/C++】Linux下使用system()函数一定要谨慎

    [C/C++]Linux下使用system()函数一定要谨慎 http://my.oschina.net/renhc/blog/53580 曾经的曾经,被system()函数折磨过,之所以这样,是因为 ...

  5. Linux下系统时间函数、DST等相关问题总结(转)

    Linux下系统时间函数.DST等相关问题总结 下面这个结构体存储了跟时区相关的位移量(offset)以及是否存在DST等信息,根据所在的时区信息,很容易找到系统时间与UTC时间之间的时区偏移,另外根 ...

  6. 【转】在嵌入式Linux和PC机Linux下使用popen函数时,程序运行结果有差异。

    下面程序演示了在嵌入式Linux和PC机Linux下使用popen函数时,程序的运行结果是有差异的. 两个程序 atest.c 和 btest.c,atest 检查是否有 btest 进程运行,如果没 ...

  7. Linux下的getline函数

    最近在做国嵌的mp3项目,在mp3主控程序中用到了这个函数,挺好使的,在这里记录一下.注意是linux下的,不是C++中的. 函数原型 ssize_t getline(char **lineptr, ...

  8. linux下实现rm()函数删除文件或目录

    转载请注明原创:http://www.cnblogs.com/StartoverX/p/4600866.html 在linux下有两个函数可以用来删除文件: #include <unistd.h ...

  9. linux下实现ls()函数遍历目录

    转载请注明原创:http://www.cnblogs.com/StartoverX/p/4600794.html 需求:在linux下遍历目录,输出目录中各文件名. 在linux下遍历目录的相关函数有 ...

随机推荐

  1. JSON.stringify(),JSON.parse(),eval(string)

      JSON.stringify()用于从一个对象解析出字符串 : var obj = {"name":"week","age":" ...

  2. Centos6.6 yum源更新

    1备份: cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d//CentOS-Base.repo.ori 2下载: wget -O /etc/y ...

  3. 洛谷——P2661 信息传递

    https://www.luogu.org/problem/show?pid=2661#sub 题目描述 有n个同学(编号为1到n)正在玩一个信息传递的游戏.在游戏里每人都有一个固定的信息传递对象,其 ...

  4. 架构设计--用户端全http參数接口具体说明v1

    1. 用户端全http參数接口具体说明v1.doc 1 2. change histor 1 3. 接口通用參数说明 1 4. 函数注冊接口(规划中) 3 5. 用户权限模块 3 5.1. 用户注冊接 ...

  5. 数学之路-python计算实战(18)-机器视觉-滤波去噪(双边滤波与高斯滤波 )

    高斯滤波就是对整幅图像进行加权平均的过程.每个像素点的值,都由其本身和邻域内的其它像素值经过加权平均后得到.高斯滤波的详细操作是:用一个模板(或称卷积.掩模)扫描图像中的每个像素.用模板确定的邻域内像 ...

  6. Mysql写出高质量的sql语句的几点建议

    CleverCode在实际的工作也写过一些低效率的sql语句.这些语句会给数据库带来非常大的压力.最基本的表现就是sql语句执行慢,后来逐渐的去优化和尝试. 总结了一些高质量的sql语句的写法.这里C ...

  7. mysql-数据库维护

    一.备份数据 1.使用mysqldump命令备份:前提:musql的版本必须一致. mysqldump -u username -p  --default -character-set=gbk dbn ...

  8. Gradle学习之自己定义属性

    请通过下面方式下载本系列文章的Github演示样例代码: git clone https://github.com/davenkin/gradle-learning.git     在前面的文章中我们 ...

  9. 基于IBM Bluemix的数据缓存应用实例

    林炳文Evankaka原创作品.转载请注明出处http://blog.csdn.net/evankaka 摘要:IBM® Data Cache for Bluemix 是快速缓存服务.支持 Web 和 ...

  10. 怎样实如今Windows下编写的代码,直接在Linux下编译

    方法一: 怎样实如今Windows7下编写Linux程序.写完程序以后.不用复制文件,直接在Linux(RHEL6.5)机器上编译最新的代码. 1.首先将Windows的代码目录设置为共享目录: 2. ...