diff options
| author | Nicholas Bastin <nick.bastin@gmail.com> | 2004-03-24 21:57:10 +0000 |
|---|---|---|
| committer | Nicholas Bastin <nick.bastin@gmail.com> | 2004-03-24 21:57:10 +0000 |
| commit | c69ebe8d50529eae281275c841428eb9b375a442 (patch) | |
| tree | b8150da59983ca89c192b45311eeee050a0b4a16 /Include | |
| parent | a1dde13389cf47ac626394796740925504e3e272 (diff) | |
| download | cpython-git-c69ebe8d50529eae281275c841428eb9b375a442.tar.gz | |
Enable the profiling of C functions (builtins and extensions)
Diffstat (limited to 'Include')
| -rw-r--r-- | Include/pystate.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/pystate.h b/Include/pystate.h index ff3596908c..353a102db3 100644 --- a/Include/pystate.h +++ b/Include/pystate.h @@ -45,6 +45,9 @@ typedef int (*Py_tracefunc)(PyObject *, struct _frame *, int, PyObject *); #define PyTrace_EXCEPTION 1 #define PyTrace_LINE 2 #define PyTrace_RETURN 3 +#define PyTrace_C_CALL 4 +#define PyTrace_C_EXCEPTION 5 +#define PyTrace_C_RETURN 6 typedef struct _ts { |
