Lines Matching defs:threaded
43 it always; if Tcl is not threaded, the thread functions in
227 If Tcl is threaded, this approach won't work anymore. The Tcl
238 In addition, for a threaded Tcl, a single global tcl_tstate won't
285 if (((TkappObject *)self)->threaded && \
304 int threaded; /* True if tcl_platform[threaded] */
584 v->threaded = Tcl_GetVar2Ex(v->interp, "tcl_platform", "threaded",
590 if (v->threaded) {
592 "Tcl is threaded but _tkinter is not");
597 if (v->threaded && tcl_lock) {
598 /* If Tcl is threaded, we don't need the lock. */
1395 1. Tcl is not threaded: Must have the Tcl lock, then can invoke command in
1397 2. Tcl is threaded, caller of the command is in the interpreter thread:
1400 3. Tcl is threaded, caller is in a different thread: Must queue an event to
1421 if (self->threaded && self->thread_id != Tcl_GetCurrentThread()) {
1695 if (self->threaded && self->thread_id != Tcl_GetCurrentThread()) {
1730 /* Tcl is not threaded, or this is the interpreter thread. */
2337 if (self->threaded && self->thread_id != Tcl_GetCurrentThread() &&
2348 if (self->threaded && self->thread_id != Tcl_GetCurrentThread()) {
2401 if (self->threaded && self->thread_id != Tcl_GetCurrentThread()) {
2733 if (self->threaded) {
3054 Set the busy-wait interval in milliseconds between successive calls to Tcl_DoOneEvent in a threaded Python interpreter.
3075 Return the current busy-wait interval between successive calls to Tcl_DoOneEvent in a threaded Python interpreter.