2021-08-08 09:38:33 +05:30
|
|
|
#ifndef Py_DTRACE_H
|
|
|
|
#define Py_DTRACE_H
|
2021-08-10 10:26:13 -07:00
|
|
|
COSMOPOLITAN_C_START_
|
2021-08-08 09:38:33 +05:30
|
|
|
|
2021-08-12 00:42:14 -07: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 09:38:33 +05:30
|
|
|
|
2021-08-10 10:26:13 -07:00
|
|
|
COSMOPOLITAN_C_END_
|
2021-08-08 09:38:33 +05:30
|
|
|
#endif /* !Py_DTRACE_H */
|