diff options
Diffstat (limited to 'gdb/s390-linux-tdep.c')
-rw-r--r-- | gdb/s390-linux-tdep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/s390-linux-tdep.c b/gdb/s390-linux-tdep.c index 9d4e2d0..5be4984 100644 --- a/gdb/s390-linux-tdep.c +++ b/gdb/s390-linux-tdep.c @@ -787,6 +787,8 @@ s390_canonicalize_syscall (int syscall, enum s390_abi_kind abi) /* ioprio_set .. epoll_pwait */ else if (syscall >= 282 && syscall <= 312) ret = syscall + 7; + else if (syscall == 349) + ret = gdb_sys_getrandom; else ret = gdb_sys_no_syscall; |