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

📄 svc_run_as.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
#if !defined(lint) && defined(SCCSIDS)static	char sccsid[] = "@(#)svc_run_as.c 1.1 92/07/30 Copyright 1989 Sun Micro";#endif/*  * This is an example of using rpc_as.h an asynchronous polling  * mechanism,  asynchronously polled fds are combined with the * service fds.  The minimum timeout is calculated, and * the user waits for that timeout or activity on either the * async fdset or the svc fdset. */#include <rpc/rpc.h>#include <sys/errno.h>#include <sys/syslog.h>#include "rpc_as.h"voidsvc_run_as(){	fd_set          readfds;	extern int      errno;	struct timeval  timeout;	int             i;	int             selsize;	selsize = _rpc_dtablesize();	if (selsize > FD_SETSIZE)		selsize = FD_SETSIZE;	for (;;) {		readfds = rpc_as_get_fdset();		for (i = 0; i < howmany(FD_SETSIZE, NFDBITS); i++)			readfds.fds_bits[i] |= svc_fdset.fds_bits[i];		timeout = rpc_as_get_timeout();		switch (select(selsize, &readfds, (fd_set *) 0, (fd_set *) 0,			       &timeout)) {		case -1:			if (errno == EINTR) {				continue;			}			perror("svc_run: - select failed: ");			return;		case 0:			rpc_as_timeout(timeout);		default:			rpc_as_rcvreqset(&readfds);			svc_getreqset(&readfds);		}	}}

⌨️ 快捷键说明

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