aboutsummaryrefslogtreecommitdiff
path: root/gdb/proc-events.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2017-04-05 19:21:37 +0100
committerPedro Alves <palves@redhat.com>2017-04-05 19:21:37 +0100
commit995816ba55d952b2823d2ead66495c5cad6dfe58 (patch)
treed2d9a758f0156e7589f4f6be87a483e8fe3cd6f4 /gdb/proc-events.c
parent3e83a920090130052a407621b94b94513f539fda (diff)
downloadbinutils-995816ba55d952b2823d2ead66495c5cad6dfe58.zip
binutils-995816ba55d952b2823d2ead66495c5cad6dfe58.tar.gz
binutils-995816ba55d952b2823d2ead66495c5cad6dfe58.tar.bz2
-Wwrite-strings: More Solaris
Some obvious constifications found by attempting to build 64-bit GDB on Solaris 11. gdb/ChangeLog: 2017-04-05 Pedro Alves <palves@redhat.com> * proc-api.c (struct trans): Constify. (procfs_note): Constify. * proc-events.c (struct trans, syscall_table): * proc-flags.c (struct trans): Constify. * proc-utils.h (procfs_note): Constify. * proc-why.c (struct trans): Constify. * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error) (procfs_detach): Constify. * sol-thread.c (struct string_map): Constify. (td_err_string, td_state_string): Constify.
Diffstat (limited to 'gdb/proc-events.c')
-rw-r--r--gdb/proc-events.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/proc-events.c b/gdb/proc-events.c
index 2353682..961d626 100644
--- a/gdb/proc-events.c
+++ b/gdb/proc-events.c
@@ -54,8 +54,8 @@
struct trans
{
int value; /* The numeric value. */
- char *name; /* The equivalent symbolic value. */
- char *desc; /* Short description of value. */
+ const char *name; /* The equivalent symbolic value. */
+ const char *desc; /* Short description of value. */
};
@@ -64,7 +64,7 @@ struct trans
/* Syscall translation table. */
#define MAX_SYSCALLS 262 /* Pretty arbitrary. */
-static char *syscall_table[MAX_SYSCALLS];
+static const char *syscall_table[MAX_SYSCALLS];
static void
init_syscall_table (void)