diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-08 22:59:01 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-08 22:59:01 +0000 |
commit | d22779f5bc9230e35caedc48714cf84a936fc040 (patch) | |
tree | c34ab2135b4bb633a78d2a3dd56975444638cbe8 /cv.h | |
parent | ae21ab7a583996be9282ef39a5a1bcfa2a228633 (diff) | |
download | perl-d22779f5bc9230e35caedc48714cf84a936fc040.tar.gz |
Retract #11212.
p4raw-id: //depot/perl@11223
Diffstat (limited to 'cv.h')
-rw-r--r-- | cv.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -34,7 +34,6 @@ struct xpvcv { struct perl_thread *xcv_owner; /* current owner thread */ #endif /* USE_THREADS */ cv_flags_t xcv_flags; - HV * xcv_defstash; }; /* @@ -70,7 +69,6 @@ Returns the stash of the CV. #define CvOWNER(sv) ((XPVCV*)SvANY(sv))->xcv_owner #endif /* USE_THREADS */ #define CvFLAGS(sv) ((XPVCV*)SvANY(sv))->xcv_flags -#define CvDEFSTASH(sv) ((XPVCV*)SvANY(sv))->xcv_defstash #define CVf_CLONE 0x0001 /* anon CV uses external lexicals */ #define CVf_CLONED 0x0002 /* a clone of one of those */ |