4 #include "caps.h" /* XSH_HAS_PERL() */
7 # error XSH_PACKAGE must be defined
10 #define XSH_PACKAGE_LEN (sizeof(XSH_PACKAGE)-1)
13 # if XSH_HAS_PERL(5, 8, 9) || XSH_HAS_PERL(5, 9, 3)
14 # define XSH_ASSERT(C) assert(C)
16 # define XSH_ASSERT(C) PERL_DEB( \
18 : (Perl_croak_nocontext("Assertion %s failed: file \"" __FILE__ \
19 "\", line %d", STRINGIFY(C), __LINE__), \
23 # define XSH_ASSERT(C)
28 # define VOID2(T, P) static_cast<T>(P)
30 # define VOID2(T, P) (P)
34 # define STMT_START do
38 # define STMT_END while (0)
49 #if XSH_HAS_PERL(5, 13, 2)
50 # define XSH_DUP_PARAMS_TYPE CLONE_PARAMS *
51 # define xsh_dup_params_init(P, O) ((P) = Perl_clone_params_new((O), aTHX))
52 # define xsh_dup_params_deinit(P) Perl_clone_params_del(P)
53 # define xsh_dup_params_ptr(P) (P)
55 # define XSH_DUP_PARAMS_TYPE CLONE_PARAMS
56 # define xsh_dup_params_init(P, O) \
57 ((P).stashes = newAV()); (P).flags = 0; ((P).proto_perl = (O))
58 # define xsh_dup_params_deinit(P) SvREFCNT_dec((P).stashes)
59 # define xsh_dup_params_ptr(P) &(P)
61 #define xsh_dup(S, P) sv_dup((S), (P))
62 #define xsh_dup_inc(S, P) SvREFCNT_inc(xsh_dup((S), (P)))
64 /* Context for PerlMemShared_*() functions */
65 #ifdef PERL_IMPLICIT_SYS
78 # define XSH_LOCK(M) MUTEX_LOCK(M)
79 # define XSH_UNLOCK(M) MUTEX_UNLOCK(M)
81 # define XSH_LOCK(M) NOOP
82 # define XSH_UNLOCK(M) NOOP
86 # define PTR2nat(p) (PTRV)(p)
90 # define DPTR2FPTR(t,p) ((t)PTR2nat(p))
94 # define FPTR2DPTR(t,p) ((t)PTR2nat(p))
97 #endif /* XSH_UTIL_H */