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 /unixish.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 'unixish.h')
-rw-r--r-- | unixish.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -133,7 +133,8 @@ #ifndef PERL_SYS_TERM_BODY # define PERL_SYS_TERM_BODY() \ - HINTS_REFCNT_TERM; OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM; + HINTS_REFCNT_TERM; OP_CHECK_MUTEX_TERM; \ + OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM; #endif |