linuxselect函数用法.doc_第1页
linuxselect函数用法.doc_第2页
linuxselect函数用法.doc_第3页
linuxselect函数用法.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

linux select 函数用法表头文件#include#include#include定义函数 int select(int n,fd_set * readfds,fd_set * writefds,fd_set * exceptfds,struct timeval * timeout);函数说明 select()用来等待文件描述词状态的改变。参数n代表最大的文件描述词加1,参数readfds、writefds 和exceptfds 称为描述词组,是用来回传该描述词的读,写或例外的状况。底下的宏提供了处理这三种描述词组的方式:FD_CLR(inr fd,fd_set* set);用来清除描述词组set中相关fd 的位FD_ISSET(int fd,fd_set *set);用来测试描述词组set中相关fd 的位是否为真FD_SET(int fd,fd_set*set);用来设置描述词组set中相关fd的位FD_ZERO(fd_set *set);用来清除描述词组set的全部位参数 timeout为结构timeval,用来设置select()的等待时间,其结构定义如下struct timevaltime_t tv_sec;time_t tv_usec;返回值 如果参数timeout设为NULL则表示select()没有timeout。错误代码 执行成功则返回文件描述词状态已改变的个数,如果返回0代表在描述词状态改变前已超过timeout时间,当有错误发生时则返回-1,错误原因存于errno,此时参数readfds,writefds,exceptfds和timeout的值变成不可预测。EBADF 文件描述词为无效的或该文件已关闭EINTR 此调用被信号所中断EINVAL 参数n 为负值。ENOMEM 核心内存不足范例 常见的程序片段:fs_set readset;FD_ZERO(&readset);FD_SET(fd,&readset);select(fd+1,&readset,NULL,NULL,NULL);if(FD_ISSET(fd,readset)下面是linux环境下select的一个简单用法#include #include #include #include #include #include int main() int keyboard; int ret, i; char c; fd_set readfd; struct timeval timeout; keyboard = open(/dev/tty, O_RDONLY | O_NONBLOCK); assert(keyboard 0); while (1) timeout.tv_sec = 1; timeout.tv_usec = 0; FD_ZERO(&readfd); FD_SET(keyboard, &readfd); ret = select(keyboard + 1, &readfd, NULL, NULL, &timeout); if (FD_ISSET(keyboard, &readfd) i = read(keyboard, &c, 1); if (n = c) continue; printf(hehethe input is %cn, c); if (q = c) break; 用来循环读取键盘输入2007年9月17日,将例子程序作一修改,加上了time out,并且考虑了select得所有的情况:#include #include #include #include #include struct timeval long tv_sec; /* seconds */ long tv_usec; /* and microseconds */;int main() int keyboard; int ret, i; char c; fd_set readfd; struct timeval timeout; keyboard = open(/dev/tty, O_RDONLY | O_NONBLOCK); assert(keyboard 0); while (1) timeout.tv_sec = 5; timeout.tv_usec = 0; FD_ZERO(&readfd); FD_SET(keyboard, &readfd); ret = select(keyboard + 1, &readfd, NULL, NULL, &timeout); /select error when ret = -1 if (ret = -1) perror(select error); /data coming when ret0 else if (ret) if (FD_ISSET(keyboard, &readfd) i = read(keyboard, &c, 1); if (n = c) continue; pr

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论