diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-10 01:09:52 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-10 01:09:52 (GMT) |
commit | feb7edc153465fca68a8551081f2beb4cbb26d96 (patch) | |
tree | e289b3c3e995fd4f984a7ba1db6a0b743e50d71f | |
parent | 48c7d7518ef59569ac555a0e743809737a4e41ce (diff) | |
download | cpython-feb7edc153465fca68a8551081f2beb4cbb26d96.zip cpython-feb7edc153465fca68a8551081f2beb4cbb26d96.tar.gz cpython-feb7edc153465fca68a8551081f2beb4cbb26d96.tar.bz2 |
dummy dtrace probes are a good place to use inline functions
-rw-r--r-- | Include/pydtrace.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/Include/pydtrace.h b/Include/pydtrace.h index a033772..4888606 100644 --- a/Include/pydtrace.h +++ b/Include/pydtrace.h @@ -22,25 +22,25 @@ /* Without DTrace, compile to nothing. */ -#define PyDTrace_LINE(arg0, arg1, arg2) do ; while (0) -#define PyDTrace_FUNCTION_ENTRY(arg0, arg1, arg2) do ; while (0) -#define PyDTrace_FUNCTION_RETURN(arg0, arg1, arg2) do ; while (0) -#define PyDTrace_GC_START(arg0) do ; while (0) -#define PyDTrace_GC_DONE(arg0) do ; while (0) -#define PyDTrace_INSTANCE_NEW_START(arg0) do ; while (0) -#define PyDTrace_INSTANCE_NEW_DONE(arg0) do ; while (0) -#define PyDTrace_INSTANCE_DELETE_START(arg0) do ; while (0) -#define PyDTrace_INSTANCE_DELETE_DONE(arg0) do ; while (0) - -#define PyDTrace_LINE_ENABLED() (0) -#define PyDTrace_FUNCTION_ENTRY_ENABLED() (0) -#define PyDTrace_FUNCTION_RETURN_ENABLED() (0) -#define PyDTrace_GC_START_ENABLED() (0) -#define PyDTrace_GC_DONE_ENABLED() (0) -#define PyDTrace_INSTANCE_NEW_START_ENABLED() (0) -#define PyDTrace_INSTANCE_NEW_DONE_ENABLED() (0) -#define PyDTrace_INSTANCE_DELETE_START_ENABLED() (0) -#define PyDTrace_INSTANCE_DELETE_DONE_ENABLED() (0) +inline void PyDTrace_LINE(const char *arg0, const char *arg1, int arg2) {} +inline void PyDTrace_FUNCTION_ENTRY(const char *arg0, const char *arg1, int arg2) {} +inline void PyDTrace_FUNCTION_RETURN(const char *arg0, const char *arg1, int arg2) {} +inline void PyDTrace_GC_START(int arg0) {} +inline void PyDTrace_GC_DONE(int arg0) {} +inline void PyDTrace_INSTANCE_NEW_START(int arg0) {} +inline void PyDTrace_INSTANCE_NEW_DONE(int arg0) {} +inline void PyDTrace_INSTANCE_DELETE_START(int arg0) {} +inline void PyDTrace_INSTANCE_DELETE_DONE(int arg0) {} + +inline int PyDTrace_LINE_ENABLED(void) { return 0; } +inline int PyDTrace_FUNCTION_ENTRY_ENABLED(void) { return 0; } +inline int PyDTrace_FUNCTION_RETURN_ENABLED(void) { return 0; } +inline int PyDTrace_GC_START_ENABLED(void) { return 0; } +inline int PyDTrace_GC_DONE_ENABLED(void) { return 0; } +inline int PyDTrace_INSTANCE_NEW_START_ENABLED(void) { return 0; } +inline int PyDTrace_INSTANCE_NEW_DONE_ENABLED(void) { return 0; } +inline int PyDTrace_INSTANCE_DELETE_START_ENABLED(void) { return 0; } +inline int PyDTrace_INSTANCE_DELETE_DONE_ENABLED(void) { return 0; } #endif /* !WITH_DTRACE */ |