From: Marcus Holland-Moritz Date: Wed, 2 Jun 2004 18:03:40 +0000 (+0000) Subject: Make change #22889 work for threaded builds, Part 2. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8e64067cc0746c66ce29ab0f883482c0562b5dd7;p=p5sagit%2Fp5-mst-13.2.git Make change #22889 work for threaded builds, Part 2. p4raw-link: @22889 on //depot/perl: e1f795dc699c88c2d9eb4a46fe629483760393c2 p4raw-id: //depot/perl@22897 --- diff --git a/XSUB.h b/XSUB.h index 77b9441..4306454 100644 --- a/XSUB.h +++ b/XSUB.h @@ -114,7 +114,7 @@ is a lexical $_ in scope. #define XSINTERFACE_FUNC_SET(cv,f) \ CvXSUBANY(cv).any_dxptr = (void (*) (pTHX_ void*))(f) -#define dUNDERBAR I32 padoff_du = Perl_find_rundefsvoffset() +#define dUNDERBAR I32 padoff_du = find_rundefsvoffset() #define UNDERBAR ((padoff_du == NOT_IN_PAD \ || PAD_COMPNAME_FLAGS(padoff_du) & SVpad_OUR) \ ? DEFSV : PAD_SVl(padoff_du))