summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-05-21 10:55:37 +0200
committerNicholas Clark <nick@ccl4.org>2009-05-21 10:55:37 +0200
commitb14647bbef65df1555e337714aa22f1e154a4462 (patch)
tree550261cc1c09052b6037bb8ee01eedec9189453b /pp_sys.c
parentd525a7b2081fbd38d70ffb150fc7fe6d30d0b62d (diff)
downloadperl-b14647bbef65df1555e337714aa22f1e154a4462.tar.gz
Remove all the 5005threads specific mutex macros, which are now vestigial.
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/pp_sys.c b/pp_sys.c
index bcd99a53cb..23f79ba4c6 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -242,7 +242,6 @@ S_emulate_eaccess(pTHX_ const char* path, Mode_t mode)
const Gid_t egid = getegid();
int res;
- LOCK_CRED_MUTEX;
#if !defined(HAS_SETREUID) && !defined(HAS_SETRESUID)
Perl_croak(aTHX_ "switching effective uid is not implemented");
#else
@@ -288,7 +287,6 @@ S_emulate_eaccess(pTHX_ const char* path, Mode_t mode)
#endif
#endif
Perl_croak(aTHX_ "leaving effective gid failed");
- UNLOCK_CRED_MUTEX;
return res;
}