⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 select.c

📁 java 到c的转换程序的原代码.对喜欢C程序而不懂JAVA程序的人很有帮助
💻 C
字号:
/* Redefinition of the open system call, so that we can mark it * as non-blocking and asynchronous */#include <sys/time.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <stdio.h>#include <stdarg.h>#include <unistd.h>int __wrap_select(int  n,  fd_set  *readfds,  fd_set  *writefds,		  fd_set *exceptfds, struct timeval *timeout){    if (timeout &&	(timeout->tv_sec == 0) &&	(timeout->tv_usec == 0)) {	return __real_select(n, readfds, writefds, exceptfds, timeout);    } else {	struct timeval notime;	int res;	notime.tv_sec = 0;	notime.tv_usec = 0;        while (1) {	    res = __real_select(n, readfds, writefds, exceptfds, &notime);	    if ((res == 0) && timeout) {		int rval;		fprintf(stderr, "Timed select blocks system!\n");		threadYield();	        rval = __real_select(n, readfds, writefds, exceptfds, timeout);		threadYield();		return rval;	    } else if (res != 0) {	        return res;            } else {                fdescAnyWait();            }        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -