diff options
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/proc-events.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 312301c..bb80e1e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2018-04-29 Fabian Groffen <grobian@gentoo.org> + + PR gdb/22950 + * proc-events.c (init_syscall_table): Guard usage os SYS_uuidsys + with #ifdef. + 2018-04-29 John Reiser <jreiser@BitWagon.com> PR build/22873 diff --git a/gdb/proc-events.c b/gdb/proc-events.c index ada51b4..21f44ba 100644 --- a/gdb/proc-events.c +++ b/gdb/proc-events.c @@ -493,7 +493,9 @@ init_syscall_table (void) syscall_table[SYS_utssys] = "utssys"; syscall_table[SYS_uucopy] = "uucopy"; syscall_table[SYS_uucopystr] = "uucopystr"; +#ifdef SYS_uuidsys syscall_table[SYS_uuidsys] = "uuidsys"; +#endif #ifdef SYS_va_mask syscall_table[SYS_va_mask] = "va_mask"; #endif |