Searched defs:serializer_s (Results 1 – 1 of 1) sorted by relevance
111 struct serializer_s { struct112 kmutex_t ser_lock; /* Protects state and the list */113 kthread_t *ser_owner; /* Thread executing serializer */114 ushort_t ser_taskq; /* Serializer scheduled for taskq */115 kcondvar_t ser_cv; /* For serializer-wait */116 uint_t ser_count; /* # of queued requests (D) */117 mblk_t *ser_first; /* First message in the queue */118 mblk_t *ser_last; /* Last message in the queue */119 srproc_t *ser_proc; /* Currently executing proc (D) */120 mblk_t *ser_curr; /* Currently executing msg (D) */[all …]