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

📄 poll.2

📁 ecos实时嵌入式操作系统
💻 2
字号:
.\"	$OpenBSD: poll.2,v 1.11 2001/08/11 08:13:18 fgsch Exp $.\".\" Copyright (c) 1994 Jason R. Thorpe.\" All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\"    notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\"    notice, this list of conditions and the following disclaimer in the.\"    documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\"    must display the following acknowledgement:.\"	This product includes software developed by Jason R. Thorpe..\" 4. The name of the author may not be used to endorse or promote products.\"    derived from this software without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED..\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,.\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;.\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED.\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,.\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\".Dd December 13, 1994.Dt POLL 2.Os.Sh NAME.Nm poll.Nd synchronous I/O multiplexing.Sh SYNOPSIS.Fd #include <poll.h>.Ft int.Fn poll "struct pollfd *fds" "int nfds" "int timeout".Sh DESCRIPTION.Fn pollprovides a mechanism for reporting I/O conditions across a set of filedescriptors..PpThe arguments are as follows:.Bl -tag -width timeout.It Pa fdsPoints to an array of.Nm pollfdstructures, which are defined as:.Bd -literal -offset indentstruct pollfd {	int fd;	short events;	short revents;};.Ed.PpThe.Pa fdmember is an open file descriptor.The.Pa eventsand.Pa reventsmembers are bitmasks of conditions to monitor and conditions found,respectively..It Pa nfdsThe number of.Nm pollfdstructures in the array..It Pa timeoutMaximum interval to wait for the poll to complete, in milliseconds.If this value is 0, then.Fn pollwill return immediately.If this value is INFTIM (-1),.Fn pollwill block indefinitely until a condition is found..El.PpThe calling process sets the.Pa eventsbitmask and.Fn pollsets the.Pa reventsbitmask.Each call to.Fn pollresets the.Pa reventsbitmask for accuracy.The condition flags in the bitmasks are defined as:.Bl -tag -width POLLRDNORM.It Nm POLLINData is available on the file descriptor for reading..It Nm POLLNORMSame as.Nm POLLIN ..It Nm POLLPRISame as.Nm POLLIN ..It Nm POLLOUTData can be written to the file descriptor without blocking..It Nm POLLERRThis flag is not used in this implementation and is provided only for sourcecode compatibility..It Nm POLLHUPThe file descriptor was valid before the polling process and invalid after.Presumably, this means that the file descriptor was closed sometime duringthe poll..It Nm POLLNVALThe corresponding file descriptor is invalid..It Nm POLLRDNORMSame as.Nm POLLIN ..It Nm POLLRDBANDSame as.Nm POLLIN ..It Nm POLLWRNORMSame as.Nm POLLOUT ..It Nm POLLWRBANDSame as.Nm POLLOUT ..It Nm POLLMSGThis flag is not used in this implementation and is provided only for sourcecode compatibility..El.PpAll flags except.Nm POLLIN ,.Nm POLLOUT ,and their synonyms are for use only in the.Pa reventsmember of the.Nm pollfdstructure.An attempt to set any of these flags in the.Pa eventsmember will generate an error condition..PpIn addition to I/O multiplexing,.Fn pollcan be used to generate simple timeouts.This functionality may be achieved by passing a null pointer for.Pa fds ..Sh WARNINGSThe.Nm POLLHUPflag is only a close approximation and may not always be accurate..Sh RETURN VALUESUpon error,.Fn pollreturns a \-1 and sets the global variable.Va errnoto indicate the error.If the timeout interval was reached before any events occurred,a 0 is returned.Otherwise,.Fn pollreturns the number of file descriptors for which.Pa reventsis non-zero..Sh ERRORS.Fn pollwill fail if:.Bl -tag -width "EINVAL   ".It Bq Er EINVAL.Pa nfdswas either a negative number or greater than the number of availablefile descriptors..It Bq Er EINVALAn invalid flags was set in the.Pa eventsmember of the.Nm pollfdstructure..It Bq Er EINVALThe timeout passed to.Fn pollwas too large..It Bq Er EAGAINResource allocation failed inside of.Fn poll .Subsequent calls to.Fn pollmay succeed..It Bq Er EINTR.Fn pollcaught a signal during the polling process..El.Sh SEE ALSO.Xr poll 2 ,.Xr select 2 ,.Xr sysconf 3.Sh HISTORYA.Fn pollsystem call appeared in.At V .

⌨️ 快捷键说明

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