日期:2014-05-16  浏览次数:20747 次

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的文件系统不同造成的.