2021-08-08 04:08:33 +00:00
|
|
|
#ifndef Py_DTRACE_H
|
|
|
|
#define Py_DTRACE_H
|
2021-08-10 17:26:13 +00:00
|
|
|
COSMOPOLITAN_C_START_
|
2021-08-08 04:08:33 +00:00
|
|
|
|
2021-08-12 07:42:14 +00:00
|
|
|
#define PyDTrace_LINE(arg0, arg1, arg2)
|
|
|
|
#define PyDTrace_FUNCTION_ENTRY(arg0, arg1, arg2)
|
|
|
|
#define PyDTrace_FUNCTION_RETURN(arg0, arg1, arg2)
|
|
|
|
#define PyDTrace_GC_START(arg0)
|
|
|
|
#define PyDTrace_GC_DONE(arg0)
|
|
|
|
#define PyDTrace_INSTANCE_NEW_START(arg0)
|
|
|
|
#define PyDTrace_INSTANCE_NEW_DONE(arg0)
|
|
|
|
#define PyDTrace_INSTANCE_DELETE_START(arg0)
|
|
|
|
#define PyDTrace_INSTANCE_DELETE_DONE(arg0)
|
|
|
|
|
|
|
|
#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
|
2021-08-08 04:08:33 +00:00
|
|
|
|
2021-08-10 17:26:13 +00:00
|
|
|
COSMOPOLITAN_C_END_
|
2021-08-08 04:08:33 +00:00
|
|
|
#endif /* !Py_DTRACE_H */
|