This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Make gdbpy_parameter static


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=0c72ed4ca21e7a9f78f19179584f3886bf463689

commit 0c72ed4ca21e7a9f78f19179584f3886bf463689
Author: Tom Tromey <tom@tromey.com>
Date:   Thu Jun 9 15:07:55 2016 -0600

    Make gdbpy_parameter static
    
    While working on the next patch in this series, I noticed that
    gdbpy_parameter did not need to be exported.  This makes it "static".
    
    2016-06-23  Tom Tromey  <tom@tromey.com>
    
    	* python/python.c (gdbpy_parameter): Now static.
    	* python/python-internal.h (gdbpy_parameter): Don't declare.

Diff:
---
 gdb/ChangeLog                | 5 +++++
 gdb/python/python-internal.h | 1 -
 gdb/python/python.c          | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 74f1c7e..72e426e 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 2016-06-23  Tom Tromey  <tom@tromey.com>
 
+	* python/python.c (gdbpy_parameter): Now static.
+	* python/python-internal.h (gdbpy_parameter): Don't declare.
+
+2016-06-23  Tom Tromey  <tom@tromey.com>
+
 	PR gdb/16483:
 	* python/lib/gdb/command/frame_filters.py
 	(InfoFrameFilter.list_frame_filters): Rename to print_list.  Print
diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h
index 6a2619c..7eb9aa4 100644
--- a/gdb/python/python-internal.h
+++ b/gdb/python/python-internal.h
@@ -375,7 +375,6 @@ PyObject *gdbpy_create_ptid_object (ptid_t ptid);
 PyObject *gdbpy_selected_thread (PyObject *self, PyObject *args);
 PyObject *gdbpy_selected_inferior (PyObject *self, PyObject *args);
 PyObject *gdbpy_string_to_argv (PyObject *self, PyObject *args);
-PyObject *gdbpy_parameter (PyObject *self, PyObject *args);
 PyObject *gdbpy_parameter_value (enum var_types type, void *var);
 char *gdbpy_parse_command_name (const char *name,
 				struct cmd_list_element ***base_list,
diff --git a/gdb/python/python.c b/gdb/python/python.c
index c177efe..3a272a9 100644
--- a/gdb/python/python.c
+++ b/gdb/python/python.c
@@ -554,7 +554,7 @@ gdbpy_parameter_value (enum var_types type, void *var)
 /* A Python function which returns a gdb parameter's value as a Python
    value.  */
 
-PyObject *
+static PyObject *
 gdbpy_parameter (PyObject *self, PyObject *args)
 {
   struct gdb_exception except = exception_none;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]