ยปCore Development>Code coverage>Python/dtrace_stubs.c

Python code coverage for Python/dtrace_stubs.c

#countcontent
1n/a#include <Python.h>
2n/a#include "pydtrace.h"
3n/a
4n/a#ifndef WITH_DTRACE
5n/aextern inline void PyDTrace_LINE(const char *arg0, const char *arg1, int arg2);
6n/aextern inline void PyDTrace_FUNCTION_ENTRY(const char *arg0, const char *arg1, int arg2);
7n/aextern inline void PyDTrace_FUNCTION_RETURN(const char *arg0, const char *arg1, int arg2);
8n/aextern inline void PyDTrace_GC_START(int arg0);
9n/aextern inline void PyDTrace_GC_DONE(int arg0);
10n/aextern inline void PyDTrace_INSTANCE_NEW_START(int arg0);
11n/aextern inline void PyDTrace_INSTANCE_NEW_DONE(int arg0);
12n/aextern inline void PyDTrace_INSTANCE_DELETE_START(int arg0);
13n/aextern inline void PyDTrace_INSTANCE_DELETE_DONE(int arg0);
14n/a
15n/aextern inline int PyDTrace_LINE_ENABLED(void);
16n/aextern inline int PyDTrace_FUNCTION_ENTRY_ENABLED(void);
17n/aextern inline int PyDTrace_FUNCTION_RETURN_ENABLED(void);
18n/aextern inline int PyDTrace_GC_START_ENABLED(void);
19n/aextern inline int PyDTrace_GC_DONE_ENABLED(void);
20n/aextern inline int PyDTrace_INSTANCE_NEW_START_ENABLED(void);
21n/aextern inline int PyDTrace_INSTANCE_NEW_DONE_ENABLED(void);
22n/aextern inline int PyDTrace_INSTANCE_DELETE_START_ENABLED(void);
23n/aextern inline int PyDTrace_INSTANCE_DELETE_DONE_ENABLED(void);
24n/a#endif