Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/man/man9f/WR.9f
Real path: /usr/share/man/man9f/WR.9f
Zurück
'\" te .\" Copyright (c) 1989, AT&T. All rights reserved. .\" Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. .TH WR 9F "16 Jan 2006" "Oracle Solaris 11.4" "Kernel Functions" .SH NAME WR, wr \- get pointer to the write queue for this module or driver .SH SYNOPSIS .LP .nf #include <sys/stream.h> #include <sys/ddi.h> \fBqueue_t *\fR\fBWR\fR(\fBqueue_t *\fR\fIq\fR); .fi .SH INTERFACE LEVEL .sp .LP Architecture independent level 1 (DDI/DKI). .SH PARAMETERS .sp .ne 2 .mk .na \fB\fIq\fR\fR .ad .RS 5n .rt Pointer to the \fIread\fR queue whose \fIwrite\fR queue is to be returned. .RE .SH DESCRIPTION .sp .LP The \fBWR()\fR function accepts a \fIread\fR queue pointer as an argument and returns a pointer to the \fIwrite\fR queue of the same module. .sp .LP CAUTION: Make sure the argument to this function is a pointer to a \fIread\fR queue. \fBWR()\fR will not check for queue type, and a system panic could result if the pointer is not to a \fIread\fR queue. .SH RETURN VALUES .sp .LP The pointer to the \fIwrite\fR queue. .SH CONTEXT .sp .LP The \fBWR()\fR function can be called from user, interrupt, or kernel context. .SH EXAMPLES .LP \fBExample 1\fR Using \fBWR()\fR .sp .LP In a STREAMS \fBclose\fR(9E) routine, the driver or module is passed a pointer to the \fIread\fR queue. These usually are set to the address of the module-specific data structure for the minor device. .sp .in +2 .nf 1 xxxclose(q, flag) 2 queue_t *q; 3 int flag; 4 { 5 q->q_ptr = NULL; 6 WR(q)->q_ptr = NULL; . . . 7 } .fi .in -2 .sp .SH SEE ALSO .sp .LP \fBclose\fR(9E), \fBOTHERQ\fR(9F), \fBRD\fR(9F) .sp .LP \fIWriting Device Drivers in Oracle Solaris 11.4\fR .sp .LP \fISTREAMS Programming Guide\fR