Unix and Linux Discussions Tagged with put |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
26,919 |
Programming |
|
|
|
0 |
2,605 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
8,883 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
7,969 |
Shell Programming and Scripting |
|
|
|
10 |
118,580 |
Shell Programming and Scripting |
|
|
|
5 |
3,036 |
UNIX for Beginners Questions & Answers |
|
|
|
12 |
7,845 |
Shell Programming and Scripting |
|
|
|
6 |
5,829 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,180 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,073 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,141 |
Shell Programming and Scripting |
|
|
|
1 |
1,641 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,052 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,129 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,387 |
Shell Programming and Scripting |
|
|
|
9 |
5,395 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
1,870 |
Shell Programming and Scripting |
|
|
|
2 |
3,113 |
Shell Programming and Scripting |
|
|
|
0 |
4,760 |
Shell Programming and Scripting |
|
|
|
1 |
3,352 |
Shell Programming and Scripting |
|
|
|
1 |
2,262 |
Shell Programming and Scripting |
|
|
|
4 |
7,465 |
Shell Programming and Scripting |
|
|
|
5 |
11,823 |
IP Networking |
|
|
|
2 |
28,001 |
Shell Programming and Scripting |
|
|
|
7 |
3,779 |
Shell Programming and Scripting |
|
|
|
0 |
1,459 |
Software Releases - RSS News |
|
|
|
2 |
8,941 |
Programming |
|
|
|
3 |
4,589 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,248 |
Solaris |
|
|
|
7 |
11,049 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,636 |
Shell Programming and Scripting |
|
|
|
4 |
3,129 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,777 |
Shell Programming and Scripting |
|
|
|
4 |
10,943 |
Shell Programming and Scripting |
|
|
|
3 |
3,874 |
Shell Programming and Scripting |
|
|
|
3 |
2,548 |
Shell Programming and Scripting |
|
|
|
3 |
9,622 |
Solaris |
|
|
|
0 |
2,525 |
UNIX and Linux RSS News |
|
|
|
8 |
4,477 |
Shell Programming and Scripting |
|
|
|
1 |
2,082 |
Shell Programming and Scripting |
putnext(9F) Kernel Functions for Drivers putnext(9F)
NAME
putnext - send a message to the next queue
SYNOPSIS
#include <sys/stream.h>
#include <sys/ddi.h>
void putnext(queue_t *q, mblk_t *mp);
INTERFACE LEVEL
Architecture independent level 1 (DDI/DKI).
PARAMETERS
q Pointer to the queue from which the message mp will be sent.
mp Message to be passed.
DESCRIPTION
putnext() is used to pass a message to the put(9E) routine of the next queue in the stream.
RETURN VALUES
None.
CONTEXT
putnext() can be called from user or interrupt context.
EXAMPLES
See allocb(9F) for an example of using putnext().
SEE ALSO
put(9E), allocb(9F), put(9F), qprocson(9F)
Writing Device Drivers
STREAMS Programming Guide
NOTES
The put() and putnext() functions should be called only after qprocson() is finished.
SunOS 5.10 18 Feb 1998 putnext(9F)