summaryrefslogtreecommitdiff
path: root/doio.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 /doio.c
parentd525a7b2081fbd38d70ffb150fc7fe6d30d0b62d (diff)
downloadperl-b14647bbef65df1555e337714aa22f1e154a4462.tar.gz
Remove all the 5005threads specific mutex macros, which are now vestigial.
Diffstat (limited to 'doio.c')
-rw-r--r--doio.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/doio.c b/doio.c
index 0e46582e89..8a12268474 100644
--- a/doio.c
+++ b/doio.c
@@ -626,7 +626,6 @@ Perl_do_openn(pTHX_ GV *gv, register const char *oname, I32 len, int as_raw,
Pid_t pid;
SV *sv;
- LOCK_FDPID_MUTEX;
sv = *av_fetch(PL_fdpid,fd,TRUE);
SvUPGRADE(sv, SVt_IV);
pid = SvIVX(sv);
@@ -634,7 +633,6 @@ Perl_do_openn(pTHX_ GV *gv, register const char *oname, I32 len, int as_raw,
sv = *av_fetch(PL_fdpid,savefd,TRUE);
SvUPGRADE(sv, SVt_IV);
SvIV_set(sv, pid);
- UNLOCK_FDPID_MUTEX;
}
#endif