summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-01-30 19:41:41 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-01-30 19:41:41 +0000
commit1d61552279452016689faf899b5e1f418a500278 (patch)
tree438859e5f8bbb384d61e8738bb2534adf4975585 /perl.h
parent746380c873d0626f12eeb18479b90569181310dc (diff)
downloadperl-1d61552279452016689faf899b5e1f418a500278.tar.gz
Microperl sync.
p4raw-id: //depot/perl@8622
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/perl.h b/perl.h
index 93e53f10f9..7441ea5306 100644
--- a/perl.h
+++ b/perl.h
@@ -3340,12 +3340,14 @@ typedef struct am_table_short AMTS;
* massively.
*/
-#ifndef PERL_OLD_SIGNALS
-#define PERL_ASYNC_CHECK() if (PL_sig_pending) despatch_signals()
+#ifndef PERL_MICRO
+# ifndef PERL_OLD_SIGNALS
+# define PERL_ASYNC_CHECK() if (PL_sig_pending) despatch_signals()
+# endif
#endif
#ifndef PERL_ASYNC_CHECK
-#define PERL_ASYNC_CHECK() NOOP
+# define PERL_ASYNC_CHECK() NOOP
#endif
/*