Home
last modified time | relevance | path

Searched refs:tp_flags (Results 1 – 8 of 8) sorted by relevance

/netbsd/src/external/cddl/osnet/lib/libzfs/
Dthread_pool.c62 (tpool->tp_flags & (TP_DESTROY | TP_ABANDON))) { in worker_cleanup()
63 if (tpool->tp_flags & TP_ABANDON) { in worker_cleanup()
68 if (tpool->tp_flags & TP_DESTROY) in worker_cleanup()
78 tpool->tp_flags &= ~TP_WAIT; in notify_waiters()
103 if (tpool->tp_flags & TP_WAIT) in job_cleanup()
128 if (tpool->tp_flags & TP_WAIT) in tpool_worker()
131 (tpool->tp_flags & TP_SUSPEND)) && in tpool_worker()
132 !(tpool->tp_flags & (TP_DESTROY | TP_ABANDON))) { in tpool_worker()
150 if (tpool->tp_flags & TP_DESTROY) in tpool_worker()
152 if (tpool->tp_flags & TP_ABANDON) { in tpool_worker()
[all …]
Dthread_pool_impl.h80 int tp_flags; /* see below */ member
/netbsd/src/external/gpl3/gdb/dist/gdb/python/
Dpy-record.c552 recpy_record_type.tp_flags = Py_TPFLAGS_DEFAULT; in gdbpy_initialize_record()
560 recpy_insn_type.tp_flags = Py_TPFLAGS_DEFAULT; in gdbpy_initialize_record()
570 recpy_func_type.tp_flags = Py_TPFLAGS_DEFAULT; in gdbpy_initialize_record()
579 recpy_gap_type.tp_flags = Py_TPFLAGS_DEFAULT; in gdbpy_initialize_record()
Dpy-instruction.c63 py_insn_type.tp_flags = Py_TPFLAGS_DEFAULT; in py_insn_get_insn_type()
Dpy-record-btrace.c821 btpy_list_type.tp_flags = Py_TPFLAGS_DEFAULT; in gdbpy_initialize_btrace()
/netbsd/src/sys/kern/
Dkern_threadpool.c196 int tp_flags; member
397 pool->tp_flags = 0; in threadpool_create()
427 KASSERT(pool->tp_flags == 0); in threadpool_create()
450 pool->tp_flags |= THREADPOOL_DYING; in threadpool_destroy()
463 KASSERT(pool->tp_flags == THREADPOOL_DYING); in threadpool_destroy()
986 if (ISSET(pool->tp_flags, THREADPOOL_DYING)) { in threadpool_dispatcher_thread()
1121 if (ISSET(pool->tp_flags, THREADPOOL_DYING)) { in threadpool_thread()
/netbsd/src/external/gpl3/gdb/dist/gdb/
DChangeLog-2010278 * python/py-value.c (value_object_type) <tp_flags>: Add
/netbsd/src/external/gpl3/binutils/dist/
DChangeLog.git171264 part of the tp_flags field when defining a new object type. This flag
171300 In GDB we pass Py_TPFLAGS_DEFAULT as part of the tp_flags for all