diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-02-03 15:23:52 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-02-03 15:23:52 +0000 |
commit | 7680e184ccc299509cb60f73dd84391ef26e0f56 (patch) | |
tree | e82053c7fbe3f01a61b313d7701149fd72335968 /hv.c | |
parent | fae667d5a60f37538a5761795f7af2165c7d4fb0 (diff) | |
download | perl-7680e184ccc299509cb60f73dd84391ef26e0f56.tar.gz |
Purge all references to 5005 threads variables in the code.
(Retain the aides memoire in makedef.pl)
p4raw-id: //depot/perl@30105
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -68,23 +68,19 @@ S_new_he(pTHX) HE* he; void ** const root = &PL_body_roots[HE_SVSLOT]; - LOCK_SV_MUTEX; if (!*root) S_more_he(aTHX); he = (HE*) *root; assert(he); *root = HeNEXT(he); - UNLOCK_SV_MUTEX; return he; } #define new_HE() new_he() #define del_HE(p) \ STMT_START { \ - LOCK_SV_MUTEX; \ HeNEXT(p) = (HE*)(PL_body_roots[HE_SVSLOT]); \ PL_body_roots[HE_SVSLOT] = p; \ - UNLOCK_SV_MUTEX; \ } STMT_END |