From 7680e184ccc299509cb60f73dd84391ef26e0f56 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sat, 3 Feb 2007 15:23:52 +0000 Subject: Purge all references to 5005 threads variables in the code. (Retain the aides memoire in makedef.pl) p4raw-id: //depot/perl@30105 --- hv.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'hv.c') diff --git a/hv.c b/hv.c index b7f53a9d91..ccc10df789 100644 --- a/hv.c +++ b/hv.c @@ -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 -- cgit v1.2.1