50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
static ThreadSpecificData *threadList = NULL;
/*
* The following bit-values are legal for the "flags" field of the
* ThreadSpecificData structure.
*/
#define TP_Dying 0x001 /* This thread is being canceled */
/*
* An instance of the following structure contains all information that is
* passed into a new thread when the thread is created using either the
* "thread create" Tcl command or the ThreadCreate() C function.
*/
|
|
|
>
|
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
static ThreadSpecificData *threadList = NULL;
/*
* The following bit-values are legal for the "flags" field of the
* ThreadSpecificData structure.
*/
enum ThreadCtrlFlags {
TP_Dying = 0x001 /* This thread is being canceled */
};
/*
* An instance of the following structure contains all information that is
* passed into a new thread when the thread is created using either the
* "thread create" Tcl command or the ThreadCreate() C function.
*/
|