SV *sv;
PerlLIO_dup2(PerlIO_fileno(fp), fd);
- FDPID_LOCK();
+ FDPID_LOCK;
sv = *av_fetch(PL_fdpid,PerlIO_fileno(fp),TRUE);
(void)SvUPGRADE(sv, SVt_IV);
pid = SvIVX(sv);
SvIVX(sv) = 0;
sv = *av_fetch(PL_fdpid,fd,TRUE);
- FDPID_UNLOCK();
+ FDPID_UNLOCK;
(void)SvUPGRADE(sv, SVt_IV);
SvIVX(sv) = pid;
if (!was_fdopen)
varstash = GvSTASH(CvGV(cv));
vargv = *(GV**)hv_fetch(varstash, autoload, autolen, TRUE);
ENTER;
+
+#ifdef USE_THREADS
Perl_lock(aTHX_ (SV *)varstash);
+#endif
if (!isGV(vargv))
gv_init(vargv, varstash, autoload, autolen, FALSE);
LEAVE;
varsv = GvSV(vargv);
+#ifdef USE_THREADS
Perl_lock(aTHX_ varsv);
+#endif
sv_setpv(varsv, HvNAME(stash));
sv_catpvn(varsv, "::", 2);
sv_catpvn(varsv, name, len);
#define Sv_Grow sv_grow
#ifdef USE_THREADS
-# define FDPID_LOCK() MUTEX_LOCK(&PL_fdpid_mutex)
-# define FDPID_UNLOCK() MUTEX_UNLOCK(&PL_fdpid_mutex)
+# define FDPID_LOCK MUTEX_LOCK(&PL_fdpid_mutex)
+# define FDPID_UNLOCK MUTEX_UNLOCK(&PL_fdpid_mutex)
#else
-# define FDPID_LOCK()
-# define FDPID_UNLOCK()
+# define FDPID_LOCK
+# define FDPID_UNLOCK
#endif
PerlLIO_close(p[This]);
p[This] = p[that];
}
- FDPID_LOCK();
+ FDPID_LOCK;
sv = *av_fetch(PL_fdpid,p[This],TRUE);
- FDPID_UNLOCK();
+ FDPID_UNLOCK;
(void)SvUPGRADE(sv,SVt_IV);
SvIVX(sv) = pid;
PL_forkprocess = pid;
int saved_win32_errno;
#endif
- FDPID_LOCK();
+ FDPID_LOCK;
svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
- FDPID_UNLOCK();
+ FDPID_UNLOCK;
pid = SvIVX(*svp);
SvREFCNT_dec(*svp);
*svp = &PL_sv_undef;
SV *
Perl_lock(pTHX_ SV *osv)
{
-#ifdef USE_THREADS
MAGIC *mg;
SV *sv = osv;
while (MgOWNER(mg))
COND_WAIT(MgOWNERCONDP(mg), MgMUTEXP(mg));
MgOWNER(mg) = thr;
- DEBUG_S(PerlIO_printf(Perl_debug_log, "0x%"UVxf": pp_lock lock 0x%"UVxf"\n",
+ DEBUG_S(PerlIO_printf(Perl_debug_log, "0x%"UVxf": Perl_lock lock 0x%"UVxf"\n",
PTR2UV(thr), PTR2UV(sv));)
MUTEX_UNLOCK(MgMUTEXP(mg));
SAVEDESTRUCTOR_X(Perl_unlock_condpair, sv);
}
-#endif
SvUNLOCK(sv);
return sv;
}
/* be used by my_pclose */
/*---------------------------------------------*/
close(fd);
- FDPID_LOCK();
+ FDPID_LOCK;
p_sv = av_fetch(PL_fdpid,fd,TRUE);
fd = (int) SvIVX(*p_sv);
SvREFCNT_dec(*p_sv);
*p_sv = &PL_sv_undef;
sv = *av_fetch(PL_fdpid,fd,TRUE);
- FDPID_UNLOCK();
+ FDPID_UNLOCK;
(void) SvUPGRADE(sv, SVt_IV);
SvIVX(sv) = pid;
status = 0;
pid = spawn_cmd(cmd, Perl_stdin_fd, Perl_stdout_fd);
if (pid >= 0)
{
- FDPID_LOCK();
+ FDPID_LOCK;
sv = *av_fetch(PL_fdpid,pFd[this],TRUE);
- FDPID_UNLOCK();
+ FDPID_UNLOCK;
(void) SvUPGRADE(sv, SVt_IV);
SvIVX(sv) = pid;
fd = PerlIO_fdopen(pFd[this], mode);
}
else
{
- FDPID_LOCK();
+ FDPID_LOCK;
sv = *av_fetch(PL_fdpid,pFd[that],TRUE);
- FDPID_UNLOCK();
+ FDPID_UNLOCK;
(void) SvUPGRADE(sv, SVt_IV);
SvIVX(sv) = pFd[this];
fd = PerlIO_fdopen(pFd[this], mode);
SV **sv;
FILE *other;
- FDPID_LOCK();
+ FDPID_LOCK;
sv = av_fetch(PL_fdpid,PerlIO_fileno(fp),TRUE);
- FDPID_UNLOCK();
+ FDPID_UNLOCK;
pid = (int) SvIVX(*sv);
SvREFCNT_dec(*sv);
*sv = &PL_sv_undef;
/* close saved handle */
win32_close(oldfd);
- FDPID_LOCK();
+ FDPID_LOCK;
sv_setiv(*av_fetch(w32_fdpid, p[parent], TRUE), childpid);
- FDPID_UNLOCK();
+ FDPID_UNLOCK;
/* set process id so that it can be returned by perl's open() */
PL_forkprocess = childpid;
int childpid, status;
SV *sv;
- FDPID_LOCK();
+ FDPID_LOCK;
sv = *av_fetch(w32_fdpid, win32_fileno(pf), TRUE);
- FDPID_UNLOCK();
+ FDPID_UNLOCK;
if (SvIOK(sv))
childpid = SvIVX(sv);
else