diff options
author | Zefram <zefram@fysh.org> | 2012-02-11 11:05:51 +0000 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2012-02-11 11:05:51 +0000 |
commit | e8570548af49b057631f1011e4b19c8c4a1342dd (patch) | |
tree | 250e8d72a232028036906cd58757ad4f86da886c /dosish.h | |
parent | 96a6e6fa4fb95146d6ef6deb911128ac757e1550 (diff) | |
download | perl-e8570548af49b057631f1011e4b19c8c4a1342dd.tar.gz |
add wrap_op_checker() API function
This function provides a convenient and thread-safe way for modules to
hook op checking.
Diffstat (limited to 'dosish.h')
-rw-r--r-- | dosish.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -52,7 +52,9 @@ #endif /* DJGPP */ #ifndef PERL_SYS_TERM_BODY -# define PERL_SYS_TERM_BODY() HINTS_REFCNT_TERM; OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM +# define PERL_SYS_TERM_BODY() \ + HINTS_REFCNT_TERM; OP_CHECK_MUTEX_TERM; \ + OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM #endif #define dXSUB_SYS |