Kaydet (Commit) f9cba090 authored tarafından Guido van Rossum's avatar Guido van Rossum

Don't use function prototypes in function definition headers.

üst 2f75b296
...@@ -52,7 +52,8 @@ PyInterpreterState_New() ...@@ -52,7 +52,8 @@ PyInterpreterState_New()
void void
PyInterpreterState_Delete(PyInterpreterState *interp) PyInterpreterState_Delete(interp)
PyInterpreterState *interp;
{ {
Py_XDECREF(interp->import_modules); Py_XDECREF(interp->import_modules);
Py_XDECREF(interp->sysdict); Py_XDECREF(interp->sysdict);
...@@ -62,7 +63,8 @@ PyInterpreterState_Delete(PyInterpreterState *interp) ...@@ -62,7 +63,8 @@ PyInterpreterState_Delete(PyInterpreterState *interp)
PyThreadState * PyThreadState *
PyThreadState_New(PyInterpreterState *interp) PyThreadState_New(interp)
PyInterpreterState *interp;
{ {
PyThreadState *tstate = PyMem_NEW(PyThreadState, 1); PyThreadState *tstate = PyMem_NEW(PyThreadState, 1);
/* fprintf(stderr, "new tstate -> %p\n", tstate); */ /* fprintf(stderr, "new tstate -> %p\n", tstate); */
...@@ -93,7 +95,8 @@ PyThreadState_New(PyInterpreterState *interp) ...@@ -93,7 +95,8 @@ PyThreadState_New(PyInterpreterState *interp)
void void
PyThreadState_Delete(PyThreadState *tstate) PyThreadState_Delete(tstate)
PyThreadState *tstate;
{ {
/* fprintf(stderr, "delete tstate %p\n", tstate); */ /* fprintf(stderr, "delete tstate %p\n", tstate); */
if (tstate == current_tstate) if (tstate == current_tstate)
...@@ -126,7 +129,8 @@ PyThreadState_Get() ...@@ -126,7 +129,8 @@ PyThreadState_Get()
PyThreadState * PyThreadState *
PyThreadState_Swap(PyThreadState *new) PyThreadState_Swap(new)
PyThreadState *new;
{ {
PyThreadState *old = current_tstate; PyThreadState *old = current_tstate;
/* fprintf(stderr, "swap tstate new=%p <--> old=%p\n", new, old); */ /* fprintf(stderr, "swap tstate new=%p <--> old=%p\n", new, old); */
......
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