summaryrefslogtreecommitdiff
path: root/gdb/amd64-bsd-nat.c
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2020-03-20 15:37:18 +0100
committerKamil Rytarowski <n54@gmx.com>2020-03-20 15:51:16 +0100
commit1ff700c202465275d1ca3aee4dd979db36274294 (patch)
tree89406345f0a8f406f572aeefeadd95f4f7054fa6 /gdb/amd64-bsd-nat.c
parentf7d4f0b1b9519fa10eb04cb195bdf7b5044d73c7 (diff)
Update the return type of gdb_ptrace to be more flexible
Linux returns long from ptrace(2) and BSDs int. gdb/ChangeLog: * amd64-bsd-nat.c (gdb_ptrace): Change return type from `int' to `PTRACE_TYPE_RET'. * i386-bsd-nat.c (gdb_ptrace): Likewise. * sparc-nat.c (gdb_ptrace): Likewise. * x86-bsd-nat.c (gdb_ptrace): Likewise.
Diffstat (limited to 'gdb/amd64-bsd-nat.c')
-rw-r--r--gdb/amd64-bsd-nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/amd64-bsd-nat.c b/gdb/amd64-bsd-nat.c
index 1ff044ff47..04322c7037 100644
--- a/gdb/amd64-bsd-nat.c
+++ b/gdb/amd64-bsd-nat.c
@@ -36,7 +36,7 @@
#include "amd64-bsd-nat.h"
-static int
+static PTRACE_TYPE_RET
gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr,
PTRACE_TYPE_ARG4 data)
{