Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../.././../../../usr/man/man9f/pollwakeup.9f
Real path: /usr/share/man/man9f/pollwakeup.9f
Zurück
'\" te .\" Copyright (c) 1989, AT&T. All rights reserved. .\" Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. .TH pollwakeup 9F "16 Jan 2006" "Oracle Solaris 11.4" "Kernel Functions" .SH NAME pollwakeup \- inform a process that an event has occurred .SH SYNOPSIS .LP .nf #include <sys/poll.h> \fBvoid\fR \fBpollwakeup\fR(\fBstruct pollhead *\fR\fIphp\fR, \fBshort\fR \fIevent\fR); .fi .SH INTERFACE LEVEL .sp .LP Architecture independent level 1 (DDI/DKI). .SH PARAMETERS .sp .ne 2 .mk .na \fB\fIphp\fR\fR .ad .RS 9n .rt Pointer to a \fBpollhead\fR structure. .RE .sp .ne 2 .mk .na \fB\fIevent\fR\fR .ad .RS 9n .rt Event to notify the process about. .RE .SH DESCRIPTION .sp .LP The \fBpollwakeup()\fR function wakes a process waiting on the occurrence of an event. It should be called from a driver for each occurrence of an event. The \fBpollhead\fR structure will usually be associated with the driver's private data structure associated with the particular minor device where the event has occurred. See \fBchpoll\fR(9E) and \fBpoll\fR(2) for more detail. .SH CONTEXT .sp .LP The \fBpollwakeup()\fR function can be called from user, interrupt, or kernel context. .SH SEE ALSO .sp .LP \fBpoll\fR(2), \fBchpoll\fR(9E) .sp .LP \fIWriting Device Drivers in Oracle Solaris 11.4\fR .SH NOTES .sp .LP Driver defined locks should not be held across calls to this function.