Commit b608196b authored by Serhiy Storchaka's avatar Serhiy Storchaka

Fixed declarations of _Py_DumpTraceback() and _Py_DumpTracebackThreads().

parents a2570626 f5f37d78
...@@ -48,7 +48,7 @@ PyAPI_DATA(PyTypeObject) PyTraceBack_Type; ...@@ -48,7 +48,7 @@ PyAPI_DATA(PyTypeObject) PyTraceBack_Type;
This function is signal safe. */ This function is signal safe. */
PyAPI_DATA(void) _Py_DumpTraceback( PyAPI_FUNC(void) _Py_DumpTraceback(
int fd, int fd,
PyThreadState *tstate); PyThreadState *tstate);
...@@ -75,7 +75,7 @@ PyAPI_DATA(void) _Py_DumpTraceback( ...@@ -75,7 +75,7 @@ PyAPI_DATA(void) _Py_DumpTraceback(
This function is signal safe. */ This function is signal safe. */
PyAPI_DATA(const char*) _Py_DumpTracebackThreads( PyAPI_FUNC(const char*) _Py_DumpTracebackThreads(
int fd, int fd,
PyInterpreterState *interp, PyInterpreterState *interp,
PyThreadState *current_tstate); PyThreadState *current_tstate);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment