diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-11 10:32:54 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-11-11 10:32:54 +0000 |
commit | 7dac9e91949b422747f7df62cf817b5c4b8fca8e (patch) | |
tree | cdd7a04e7b75f54261ca8d31b5dbd98d7053dd10 /scope.h | |
parent | fda95805316f7aa147b09b339da67e48c7bc8f55 (diff) | |
download | perl-7dac9e91949b422747f7df62cf817b5c4b8fca8e.tar.gz |
avoid stash pointers in optree under USE_ITHREADS
p4raw-id: //depot/perl@4546
Diffstat (limited to 'scope.h')
-rw-r--r-- | scope.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -111,8 +111,10 @@ } STMT_END #ifdef USE_ITHREADS +# define SAVECOPSTASH(cop) SAVEPPTR(CopSTASHPV(cop)) # define SAVECOPFILE(cop) SAVEPPTR(CopFILE(cop)) #else +# define SAVECOPSTASH(cop) SAVESPTR(CopSTASH(cop)) # define SAVECOPFILE(cop) SAVESPTR(CopFILEGV(cop)) #endif |