1strqget(9F) Kernel Functions for Drivers strqget(9F)
2
3
4
6 strqget - get information about a queue or band of the queue
7
9 #include <sys/stream.h>
10
11
12
13 int strqget(queue_t *q, qfields_t what, unsigned char pri, void *valp);
14
15
17 Architecture independent level 1 (DDI/DKI).
18
20 q Pointer to the queue.
21
22
23 what Field of the queue structure for (or the specified priority
24 band) to return information about. Valid values are one of:
25
26 QHIWAT High water mark.
27
28
29 QLOWAT Low water mark.
30
31
32 QMAXPSZ Largest packet accepted.
33
34
35 QMINPSZ Smallest packet accepted.
36
37
38 QCOUNT Approximate size (in bytes) of data.
39
40
41 QFIRST First message.
42
43
44 QLAST Last message.
45
46
47 QFLAG Status.
48
49
50
51 pri Priority band of interest.
52
53
54 valp The address of where to store the value of the requested field.
55
56
58 The strqget() function gives drivers and modules a way to get informa‐
59 tion about a queue or a particular band of a queue without directly
60 accessing STREAMS data structures, thus insulating them from changes in
61 the implementation of these data structures from release to release.
62
64 On success, 0 is returned and the value of the requested field is
65 stored in the location pointed to by valp. An error number is returned
66 on failure.
67
69 The strqget() function can be called from user, interrupt, or kernel
70 context.
71
73 strqset(9F), queue(9S)
74
75
76 Writing Device Drivers
77
78
79 STREAMS Programming Guide
80
81
82
83SunOS 5.11 16 Jan 2006 strqget(9F)