diff options
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-utils.c | 42 | ||||
-rw-r--r-- | gdb/python/python-internal.h | 3 |
2 files changed, 0 insertions, 45 deletions
diff --git a/gdb/python/py-utils.c b/gdb/python/py-utils.c index 2cbf29e..e26de41 100644 --- a/gdb/python/py-utils.c +++ b/gdb/python/py-utils.c @@ -23,48 +23,6 @@ #include "python-internal.h" #include "py-ref.h" -/* This is a cleanup function which decrements the refcount on a - Python object. */ - -static void -py_decref (void *p) -{ - PyObject *py = (PyObject *) p; - - Py_DECREF (py); -} - -/* Return a new cleanup which will decrement the Python object's - refcount when run. */ - -struct cleanup * -make_cleanup_py_decref (PyObject *py) -{ - return make_cleanup (py_decref, (void *) py); -} - -/* This is a cleanup function which decrements the refcount on a - Python object. This function accounts appropriately for NULL - references. */ - -static void -py_xdecref (void *p) -{ - PyObject *py = (PyObject *) p; - - Py_XDECREF (py); -} - -/* Return a new cleanup which will decrement the Python object's - refcount when run. Account for and operate on NULL references - correctly. */ - -struct cleanup * -make_cleanup_py_xdecref (PyObject *py) -{ - return make_cleanup (py_xdecref, py); -} - /* Converts a Python 8-bit string to a unicode string object. Assumes the 8-bit string is in the host charset. If an error occurs during conversion, returns NULL with a python exception set. diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index 1d0ce0b..908a878 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -498,9 +498,6 @@ int gdbpy_initialize_xmethods (void) int gdbpy_initialize_unwind (void) CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION; -struct cleanup *make_cleanup_py_decref (PyObject *py); -struct cleanup *make_cleanup_py_xdecref (PyObject *py); - /* Called before entering the Python interpreter to install the current language and architecture to be used for Python values. Also set the active extension language for GDB so that SIGINT's |