码迷,mamicode.com
首页 > 系统相关 > 详细

linux select函数

时间:2015-03-05 17:23:38      阅读:238      评论:0      收藏:0      [点我收藏+]

标签: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);
void FD_CLR(int fd, fd_set *set);
int  FD_ISSET(int fd, fd_set *set);
void FD_SET(int fd, fd_set *set);
void FD_ZERO(fd_set *set);



本文出自 “wonder--wander” 博客,请务必保留此出处http://wonderwander.blog.51cto.com/9831934/1617613

linux select函数

标签:linux select 开发

原文地址:http://wonderwander.blog.51cto.com/9831934/1617613

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!