[win32] s/PerlENV/PerlEnv/ just to be consistent
[p5sagit/p5-mst-13.2.git] / thrdvar.h
CommitLineData
49f531da 1/* Per-thread variables */
2/* Important ones in the first cache line (if alignment is done right) */
d4cce5f1 3
49f531da 4PERLVAR(Tstack_sp, SV **)
5#ifdef OP_IN_REGISTER
6PERLVAR(Topsave, OP *)
7#else
8PERLVAR(Top, OP *)
9#endif
10PERLVAR(Tcurpad, SV **)
49f531da 11
d4cce5f1 12PERLVAR(Tstack_base, SV **)
49f531da 13PERLVAR(Tstack_max, SV **)
14
15PERLVAR(Tscopestack, I32 *)
16PERLVAR(Tscopestack_ix, I32)
17PERLVAR(Tscopestack_max,I32)
18
19PERLVAR(Tsavestack, ANY *)
20PERLVAR(Tsavestack_ix, I32)
21PERLVAR(Tsavestack_max, I32)
22
23PERLVAR(Tretstack, OP **)
24PERLVAR(Tretstack_ix, I32)
25PERLVAR(Tretstack_max, I32)
26
27PERLVAR(Tmarkstack, I32 *)
28PERLVAR(Tmarkstack_ptr, I32 *)
29PERLVAR(Tmarkstack_max, I32 *)
30
d4cce5f1 31PERLVAR(TSv, SV *)
32PERLVAR(TXpv, XPV *)
61bb5906 33PERLVAR(Tstatbuf, Stat_t)
49f531da 34#ifdef HAS_TIMES
35PERLVAR(Ttimesbuf, struct tms)
36#endif
37
49f531da 38/* Now the fields that used to be "per interpreter" (even when global) */
39
40/* Fields used by magic variables such as $@, $/ and so on */
d4cce5f1 41PERLVAR(Ttainted, bool) /* using variables controlled by $< */
42PERLVAR(Tcurpm, PMOP *) /* what to do \ interps from */
49f531da 43PERLVAR(Tnrs, SV *)
d4cce5f1 44PERLVAR(Trs, SV *) /* $/ */
49f531da 45PERLVAR(Tlast_in_gv, GV *)
d4cce5f1 46PERLVAR(Tofs, char *) /* $, */
49f531da 47PERLVAR(Tofslen, STRLEN)
48PERLVAR(Tdefoutgv, GV *)
d4cce5f1 49PERLVARI(Tchopset, char *, " \n-") /* $: */
49f531da 50PERLVAR(Tformtarget, SV *)
51PERLVAR(Tbodytarget, SV *)
52PERLVAR(Ttoptarget, SV *)
53
d4cce5f1 54/* Stashes */
55PERLVAR(Tdefstash, HV *) /* main symbol table */
56PERLVAR(Tcurstash, HV *) /* symbol table for current package */
49f531da 57
d4cce5f1 58/* Stacks */
49f531da 59PERLVAR(Ttmps_stack, SV **)
d4cce5f1 60PERLVARI(Ttmps_ix, I32, -1)
61PERLVARI(Ttmps_floor, I32, -1)
49f531da 62PERLVAR(Ttmps_max, I32)
63
d4cce5f1 64PERLVAR(Trestartop, OP *) /* Are we propagating an error from croak? */
65PERLVARI(Tcurcop, COP * VOL, &compiling)
66PERLVAR(Tin_eval, VOL int) /* trap "fatal" errors? */
67PERLVAR(Tdelaymagic, int) /* ($<,$>) = ... */
68PERLVAR(Tdirty, bool) /* In the middle of tearing things down? */
61bb5906 69PERLVAR(Tlocalizing, int) /* are we processing a local() list? */
49f531da 70
71PERLVAR(Tcxstack, PERL_CONTEXT *)
d4cce5f1 72PERLVARI(Tcxstack_ix, I32, -1)
73PERLVARI(Tcxstack_max, I32, 128)
49f531da 74
d4cce5f1 75PERLVAR(Tcurstack, AV *) /* THE STACK */
76PERLVAR(Tmainstack, AV *) /* the stack when nothing funny is happening */
77PERLVAR(Ttop_env, JMPENV *) /* ptr. to current sigjmp() environment */
78PERLVAR(Tstart_env, JMPENV) /* empty startup sigjmp() environment */
49f531da 79
80/* XXX Sort stuff, firstgv secongv and so on? */
d4cce5f1 81/* XXX What about regexp stuff? */
82
83#ifdef USE_THREADS
49f531da 84
85PERLVAR(oursv, SV *)
86PERLVAR(cvcache, HV *)
87PERLVAR(self, perl_os_thread) /* Underlying thread object */
88PERLVAR(flags, U32)
89PERLVAR(threadsv, AV *) /* Per-thread SVs ($_, $@ etc.) */
90PERLVAR(specific, AV *) /* Thread-specific user data */
91PERLVAR(errsv, SV *) /* Backing SV for $@ */
92PERLVAR(errhv, HV *) /* HV for what was %@ in pp_ctl.c */
93PERLVAR(mutex, perl_mutex) /* For the fields others can change */
94PERLVAR(tid, U32)
95PERLVAR(prev, struct perl_thread *)
96PERLVAR(next, struct perl_thread *) /* Circular linked list of threads */
97
98#ifdef HAVE_THREAD_INTERN
99PERLVAR(i, struct thread_intern) /* Platform-dependent internals */
100#endif
101
102PERLVAR(trailing_nul, char) /* For the sake of thrsv and oursv */
103
d4cce5f1 104#endif /* USE_THREADS */