Searched refs:tp_flags (Results 1 – 8 of 8) sorted by relevance
62 (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 …]
80 int tp_flags; /* see below */ member
552 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()
63 py_insn_type.tp_flags = Py_TPFLAGS_DEFAULT; in py_insn_get_insn_type()
821 btpy_list_type.tp_flags = Py_TPFLAGS_DEFAULT; in gdbpy_initialize_btrace()
196 int tp_flags; member397 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()
278 * python/py-value.c (value_object_type) <tp_flags>: Add
171264 part of the tp_flags field when defining a new object type. This flag171300 In GDB we pass Py_TPFLAGS_DEFAULT as part of the tp_flags for all