diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-10 22:41:31 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-10 22:41:31 +0000 |
commit | 7c06b590c066c6b354b0347a68bd9817268651b8 (patch) | |
tree | 7ebb9bb01c5686f835c5be10b41fb97be1f5c295 /thread.h | |
parent | 32f822de0a58c2cc8f1a23844b97246c433bb418 (diff) | |
download | perl-7c06b590c066c6b354b0347a68bd9817268651b8.tar.gz |
Remove runlevel. It was used to count how many runops() calls
we were in the process of executing, and longjmp() to the topmost
one (if not already there). We use a null top_env->je_prev
to distinguish that now.
p4raw-id: //depot/win32/perl@223
Diffstat (limited to 'thread.h')
-rw-r--r-- | thread.h | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -211,7 +211,6 @@ struct thread { AV * Tcurstack; AV * Tmainstack; JMPENV * Ttop_env; - I32 Trunlevel; /* XXX Sort stuff, firstgv, secongv and so on? */ @@ -310,7 +309,6 @@ typedef struct condpair { #undef start_env #undef toptarget #undef top_env -#undef runlevel #undef in_eval #undef restartop #undef delaymagic @@ -382,7 +380,6 @@ typedef struct condpair { #define localizing (thr->Tlocalizing) #define top_env (thr->Ttop_env) -#define runlevel (thr->Trunlevel) #define start_env (thr->Tstart_env) #else |