- t2ex
- bsd_source/t2ex/network/net/src_bsd/sys/callback.h - 2.4KB - 67 lines
40: struct callback_entry {
41: TAILQ_ENTRY(callback_entry) ce_q;
42: int (*ce_func)(struct callback_entry *, void *, void *);
- bsd_source/t2ex/network/net/src_bsd/sys/device.h - 21.6KB - 527 lines
120: devclass_t dv_class; /* this device's classification */
121: TAILQ_ENTRY(device) dv_list; /* entry on list of all devices */
122: cfdata_t dv_cfdata; /* config data that found us
- More results from device.h
- bsd_source/t2ex/network/net/src_bsd/sys/evcnt.h - 5.7KB - 135 lines
80: uint64_t ev_count; /* how many have occurred */
81: TAILQ_ENTRY(evcnt) ev_list; /* entry on list of all counters */
82: unsigned char ev_type; /* counter type; see below */
- bsd_source/t2ex/network/net/src_bsd/sys/event.h - 9.8KB - 258 lines
187: SLIST_ENTRY(knote) kn_selnext; /* o: for struct selinfo */
188: TAILQ_ENTRY(knote) kn_tqe; /* q: for struct kqueue */
189: struct kqueue *kn_kq; /* q: which queue we are on */
- bsd_source/t2ex/network/net/src_bsd/sys/lwp.h - 20.6KB - 535 lines
73: /* Synchronisation */
74: TAILQ_ENTRY(lwp) l_sleepchain; /* l: sleep queue */
75: wchan_t l_wchan; /* l: sleep address */
- More results from lwp.h
- bsd_source/t2ex/network/net/src_bsd/sys/pool.h - 15.0KB - 384 lines
83: struct pool {
84: TAILQ_ENTRY(pool)
85: pr_poollist;
- More results from pool.h
- bsd_source/t2ex/network/net/src_bsd/sys/socketvar.h - 22.2KB - 595 lines
159: struct soqhead so_q; /* queue of incoming connections */
160: TAILQ_ENTRY(socket) so_qe; /* our queue entry (q or q0) */
161: short so_q0len; /* partials on so_q0 */
- bsd_source/t2ex/network/net/src_bsd/sys/timevar.h - 8.0KB - 214 lines
92: struct proc *pt_proc;
93: TAILQ_ENTRY(ptimer) pt_chain;
94: };