c语言select函数作用,linux c语言 select函数使用方法

表头文件

#i nclude

#i nclude

#i nclude

定义函数

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 timeval

{

time_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的一个简单使用方法

#i nclude

#i nclude

#i nclude

#i nclude

#i nclude

#i nclude

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 %c\n",c);

if ('q'==c)

break;

}

}

}

用来循环读取键盘输入

2007年9月17日,将样例程序作一改动,加上了time out,而且考虑了select得全部的情况:

#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=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 ret>0

else if (ret)

{

if(FD_ISSET(keyboard,&readfd))

{

i=read(keyboard,&c,1);

if('\n'==c)

continue;

printf("hehethe input is %c\n",c);

if ('q'==c)

break;

}

}

//time out when ret = 0

else if (ret == 0)

printf("time out\n");

}

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值