Linux编程
文章平均质量分 76
nihao_2008
这个作者很懒,什么都没留下…
展开
-
::system has not been declared 的问题
这个问题的出现是由于system宏在phtread.h中已经有定义,因而产生了冲突,至于为什么这样会产生冲突,我也没想明白,希望高手指点,谢!一英文网站上贴出的解释:In we have:[-- ----------]...#include #include #include ...#undef system...namespace std { ... using ::system;原创 2007-10-05 16:26:00 · 3673 阅读 · 0 评论 -
Select()系统调用及文件描述符集fd_set的应用
Select()系统调用及文件描述符集fd_set的应用湖南省衡阳市环境工程公司网络中心 张 卿 在网络程序中,一个进程同时处理多个文件描述符是很常见的情况。select()系统调用可以使进程检测同时等待的多个I/O设备,当没有设备准备好时,select()阻塞,其中任一设备准备好时,select()就返回。 select()的调用形式为: #include #include int sel原创 2008-05-16 14:58:00 · 547 阅读 · 0 评论