Skip Navigation Links | |
Exit Print View | |
man pages section 3: Library Interfaces and Headers Oracle Solaris 11.1 Information Library |
Library Interfaces and Headers
SMHBA_GetAdapterAttributes(3LIB)
SMHBA_GetAdapterPortAttributes(3LIB)
SMHBA_GetBindingCapability(3LIB)
SMHBA_GetDiscoveredPortAttributes(3LIB)
SMHBA_GetFCPhyAttributes(3LIB)
SMHBA_GetPersistentBinding(3LIB)
SMHBA_GetPortAttributesByWWN(3LIB)
SMHBA_GetProtocolStatistics(3LIB)
SMHBA_GetSASPhyAttributes(3LIB)
SMHBA_GetVendorLibraryAttributes(3LIB)
SMHBA_GetWrapperLibraryAttributes(3LIB)
SMHBA_RegisterForAdapterAddEvents(3LIB)
SMHBA_RegisterForAdapterEvents(3LIB)
SMHBA_RegisterForAdapterPhyStatEvents(3LIB)
SMHBA_RegisterForAdapterPortEvents(3LIB)
SMHBA_RegisterForAdapterPortStatEvents(3LIB)
SMHBA_RegisterForTargetEvents(3LIB)
SMHBA_RemoveAllPersistentBindings(3LIB)
SMHBA_RemovePersistentBinding(3LIB)
- definitions for the poll() function
#include <poll.h>
The <poll.h> header defines the pollfd structure, which includes the following members:
the following descriptor being polled
the input event flags (see below)
the output event flags (see below)
The <poll.h> header defines the following type through typedef:
an unsigned integer type used for the number of file descriptors
The implementation supports one or more programming environments in which the width of nfds_t is no greater than the width of type long. The names of these programming environments can be obtained using the confstr() function or the getconf utility. See confstr(3C) and getconf(1).
The following symbolic constants are defined, zero or more of which can be OR'ed together to form the events or revents members in the pollfd structure:
Data other than high-priority data can be read without blocking.
Normal data can be read without blocking.
Priority data can be read without blocking.
High priority data can be read without blocking.
Normal data can be written without blocking.
Equivalent to POLLOUT.
Priority data can be written.
An error has occurred (revents only).
Device has been disconnected (revents only).
Invalid fd member (revents only).
The significance and semantics of normal, priority, and high-priority data are file and device-specific.
See attributes(5) for descriptions of the following attributes:
|
getconf(1), poll(2), confstr(3C), attributes(5), standards(5)