diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-11 23:08:54 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-11 23:08:54 +0000 |
commit | e7cd54d7e2bd82a89f30e2f71675be1f5d3be34d (patch) | |
tree | f6873b8c4849ed68422779287f972403412a3412 /thread.h | |
parent | 1d64a758d60d7ded97c59c753fea85d3365ca0df (diff) | |
parent | 004955206412e3e53b76d4dad6bc7ac3032c300a (diff) | |
download | perl-e7cd54d7e2bd82a89f30e2f71675be1f5d3be34d.tar.gz |
Initial (untested) integration of mainline changes.
p4raw-id: //depot/win32/perl@234
Diffstat (limited to 'thread.h')
-rw-r--r-- | thread.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -220,11 +220,13 @@ struct thread { U32 flags; AV * magicals; /* Per-thread magicals */ AV * specific; /* Thread-specific user data */ + SV * errsv; /* Backing SV for $@ */ + HV * errhv; /* HV for what was %@ in pp_ctl.c */ perl_mutex mutex; /* For the fields others can change */ U32 tid; struct thread *next, *prev; /* Circular linked list of threads */ JMPENV Tstart_env; /* Top of top_env longjmp() chain */ -#ifdef ADD_THREAD_INTERN +#ifdef HAVE_THREAD_INTERN struct thread_intern i; /* Platform-dependent internals */ #endif char trailing_nul; /* For the sake of thrsv and oursv */ |