STREAMS Walkers
- b_cont
-
Given the address of an
mblk_t, iterate over the set of associated message structures by following theb_contpointer. Theb_contpointer is used to link a given message block to the next associated message block that is the continuation of the same message. The message block is described in more detail inmsgb(9S) - b_next
-
Given the address of an
mblk_t, iterate over the set of associated message structures by following theb_nextpointer. Theb_nextpointer is used to link a given message block to the next associated message block on a given queue. The message block is described in more detail inmsgb(9S). - qlink
-
Given the address of a
queue_tstructure, walk the list of related queues using theq_linkpointer. This structure is defined in<sys/stream.h>. - qnext
-
Given the address of a
queue_tstructure, walk the list of related queues using theq_nextpointer. This structure is defined in<sys/stream.h>. - readq
-
Given the address of an
stdata_tstructure, walk the list of read-side queue structures. - writeq
-
Given the address of an
stdata_tstructure, walk the list of write-side queue structures.