This is the mail archive of the gdb-patches@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]

[commit] Fix -Wmissing-prototypes errors in sol-thread.c


gdb/ChangeLog:

        * sol-thread.c (solaris_pid_to_str): Make static.
        (_initialize_sol_thread): Add prototype.

Tested by rebuilding GDB on sparc-solaris.  Checked in.

---
 gdb/ChangeLog    |    5 +++++
 gdb/sol-thread.c |    5 ++++-
 2 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c0601fa..0bb6d75 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
 
+	* sol-thread.c (solaris_pid_to_str): Make static.
+	(_initialize_sol_thread): Add prototype.
+
+2012-05-02  Joel Brobecker  <brobecker@adacore.com>
+
 	* sol-thread.c (procfs_pid_to_str): Delete extern declaration.
 
 2012-05-02  Christopher Faylor  <me.cygwin2012@cgf.cx>
diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c
index bfa1162..01bc2e0 100644
--- a/gdb/sol-thread.c
+++ b/gdb/sol-thread.c
@@ -1132,7 +1132,7 @@ ps_lgetLDT (gdb_ps_prochandle_t ph, lwpid_t lwpid,
 
 /* Convert PTID to printable form.  */
 
-char *
+static char *
 solaris_pid_to_str (struct target_ops *ops, ptid_t ptid)
 {
   static char buf[100];
@@ -1340,6 +1340,9 @@ init_sol_thread_ops (void)
   sol_thread_ops.to_magic = OPS_MAGIC;
 }
 
+/* Silence -Wmissing-prototypes.  */
+extern void _initialize_sol_thread (void);
+
 void
 _initialize_sol_thread (void)
 {
-- 
1.7.1


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