[RFA,44/67] Constify some commands in thread.c

Message ID 20170921051023.19023-45-tom@tromey.com
State New, archived
Headers

Commit Message

Tom Tromey Sept. 21, 2017, 5:10 a.m. UTC
  ChangeLog
2017-09-20  Tom Tromey  <tom@tromey.com>

	* thread.c (thread_name_command, thread_find_command): Constify.
---
 gdb/ChangeLog | 4 ++++
 gdb/thread.c  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)
  

Patch

diff --git a/gdb/thread.c b/gdb/thread.c
index 2539d43..1d7cb55 100644
--- a/gdb/thread.c
+++ b/gdb/thread.c
@@ -1900,7 +1900,7 @@  thread_command (char *tidstr, int from_tty)
 /* Implementation of `thread name'.  */
 
 static void
-thread_name_command (char *arg, int from_tty)
+thread_name_command (const char *arg, int from_tty)
 {
   struct thread_info *info;
 
@@ -1917,7 +1917,7 @@  thread_name_command (char *arg, int from_tty)
 /* Find thread ids with a name, target pid, or extra info matching ARG.  */
 
 static void
-thread_find_command (char *arg, int from_tty)
+thread_find_command (const char *arg, int from_tty)
 {
   struct thread_info *tp;
   const char *tmp;