linux 下的select函数

函数原型

  /* 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看何时有输入

[email protected]:/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

时间: 2024-11-03 21:20:09

linux 下的select函数的相关文章

linux下转格式函数iconv段错误

今天将windows代码移植到Linux下,其中用到了Unicode转char的函数,被坑了一会,相关函数及编码格式,Linux与windows不同,有几点需要注意: 1.wchar_t 在Linux下占用4个字节,在windows下占2个字节: 2.Linux默认的文本编码方式是UTF-8:Linux终端汉字显示的设置方式:vi /etc/sysconfig/i18n: 设置LANG="en_US.UTF-8"或者LANG="zh_CN.UTF-8": 3.ico

linux下的信号处理函数总结

1.信号处理函数 相关函数原型如下: #include <signal.h> sighandler_t signal(int signum, sighandler_t handler); 第一参数是信号 第二个参数是信号处理器:             1.可以是SIG_DFL,信号的默认动作             2. 可以是SIG_IGN,忽略该信号             3. 一个带有一个整型参数的处理函数. #include <signal.h> int sigacti

linux下C语言函数执行时间统计

转载:http://blog.csdn.net/linquidx/article/details/5916701#t5 写好程序,用gcc编译,带上-pg参数,然后运行以后分析gmon.out文件: 命令exp:   gprof ./test-main ./gmon.out >1.log  在1.log中会生成各函数运行情况. gprof 1.1 简介 gprof实际上只是一个用于读取profile结果文件的工具.gprof采用混合方法来收集程序的统计信息,他使用检测方法,在编译过程中在函数入口

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

linux下的ioctl函数原型如下: #include <sys/ioctl.h> int ioctl(int handle, int cmd, [int *argc, int argv]) 函数成功返回0,失败返回-1. 其相关命令接口如下: 类别 Request 说明 数据类型 套 接 口 SIOCATMARK SIOCSPGRP SIOCGPGRP 是否位于带外标记 设置套接口的进程ID 或进程组ID 获取套接口的进程ID 或进程组ID int int int 文 件 FIONBIO

Linux下利用signal函数处理ctrl+c等信号

前言 linux下可以通过信号机制来实现程序的软中断,是一个非常有用的编程方法.我们平时在程序运行的时候按下ctrl-c.ctrl-z或者kill一个进程的时候其实都等效于向这个进程发送了一个特定信号,当进程捕获到信号后,进程会被中断并立即跳转到信号处理函数.默认情况下一个程序对ctrl-c发出的信号(SIGINT)的处理方式是退出进程,所以当我们按下ctrl-c的时候就可以终止一个进程的运行. signal函数 但是有时候我们希望我们的程序在被信号终止之前执行一些特定的收尾流程,或者我们希望我

Linux下使用system()函数一定要谨慎 【转载】

出处:http://blog.csdn.net/kyokowl/article/details/8823334 C/C++]Linux下使用system()函数一定要谨慎 曾经的曾经,被system()函数折磨过,之所以这样,是因为对system()函数了解不够深入.只是简单的知道用这个函数执行一个系统命令,这远远不够,它的返回值.它所执行命令的返回值以及命令执行失败原因如何定位,这才是重点.当初因为这个函数风险较多,故抛弃不用,改用其他的方法.这里先不说我用了什么方法,这里必须要搞懂syste

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

需求:在linux下遍历目录,输出目录中各文件名. 在linux下遍历目录的相关函数有: #include <dirent.h> DIR* opendir(const char* dir_path); struct dirent* readdir(DIR* dirp); int closedir(DIR* dirp); int lstat(const chat* filename,struct stat* st); 在这里涉及到几个结构体:DIR,struct dirent,struct st

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

在linux下有两个函数可以用来删除文件: #include <unistd.h> int unlink(const char *pathname); unlink函数删除文件系统中的一个名字,如果这个名字是该文件的最后一个link并且该文件没有被任何进程打开,那么删除该文件.否则等到文件被关闭或最后一个link被删除后删除该文件并释放空间. #include <unistd.h> int rmdir(const char *pathname); 只有当目录为空的时候,rmdir才

Linux下clock计时函数学习

平时在Linux和Winows下都有编码的时候,移植代码的时候免不了发现一些问题.1. 你到底准不准?关于clock()计时函数首先是一段简单的测试代码,功能为测试从文本文件读取数据并赋值给向量最后打印输出的运行时间. int main(int argc, char **argv){    clock_t t1=clock();ifstream in("data.txt");vector<int> v;for(int a;in>>a;v.push_back(a)