首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

win32下的select函数可以监听文件句柄吗?该怎么解决

2012-03-16 
win32下的select函数可以监听文件句柄吗?linux下的select()的函数可以去监听所有的fd,除了socket应该也包

win32下的select函数可以监听文件句柄吗?
linux下的select()的函数可以去监听所有的fd,除了socket应该也包括文件fd。
但在windowns下我传入文件句柄,好像出错了。
是不是,windows下的select()函数只对socket感兴趣。

[解决办法]
给LZ一些参考:
man select:
The pselect() and select() functions shall support regular files, terminal and pseudo-terminal devices, STREAMS-based files, FIFOs, pipes, and sockets. The behavior of pselect() and select() on file descriptors that refer to other types of file is unspecified.

MSDN:The select function is used to determine the status of one or more sockets. For each socket.......

个人认为是这样的..

[解决办法]
Windows下的select是个缩水版本, 这是因为Windows和Linux的文件系统不同造成的.

热点排行