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