diff options
author | Kamil Rytarowski <n54@gmx.com> | 2020-03-20 15:37:18 +0100 |
---|---|---|
committer | Kamil Rytarowski <n54@gmx.com> | 2020-03-20 15:51:16 +0100 |
commit | 1ff700c202465275d1ca3aee4dd979db36274294 (patch) | |
tree | 89406345f0a8f406f572aeefeadd95f4f7054fa6 | |
parent | f7d4f0b1b9519fa10eb04cb195bdf7b5044d73c7 (diff) | |
download | gdb-1ff700c202465275d1ca3aee4dd979db36274294.zip gdb-1ff700c202465275d1ca3aee4dd979db36274294.tar.gz gdb-1ff700c202465275d1ca3aee4dd979db36274294.tar.bz2 |
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.
-rw-r--r-- | gdb/ChangeLog | 8 | ||||
-rw-r--r-- | gdb/amd64-bsd-nat.c | 2 | ||||
-rw-r--r-- | gdb/i386-bsd-nat.c | 2 | ||||
-rw-r--r-- | gdb/sparc-nat.c | 2 | ||||
-rw-r--r-- | gdb/x86-bsd-nat.c | 2 |
5 files changed, 12 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1be14b1..650b74b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2020-03-20 Kamil Rytarowski <n54@gmx.com> + + * 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. + 2020-03-20 Tom Tromey <tromey@adacore.com> * c-exp.y (lex_one_token): Fix assert. diff --git a/gdb/amd64-bsd-nat.c b/gdb/amd64-bsd-nat.c index 1ff044f..04322c7 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) { diff --git a/gdb/i386-bsd-nat.c b/gdb/i386-bsd-nat.c index 3250dab..4e86932 100644 --- a/gdb/i386-bsd-nat.c +++ b/gdb/i386-bsd-nat.c @@ -34,7 +34,7 @@ #include "inf-ptrace.h" -static int +static PTRACE_TYPE_RET gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr, PTRACE_TYPE_ARG4 data) { diff --git a/gdb/sparc-nat.c b/gdb/sparc-nat.c index fadcfd3..8d5bf35 100644 --- a/gdb/sparc-nat.c +++ b/gdb/sparc-nat.c @@ -78,7 +78,7 @@ typedef struct fp_status fpregset_t; #define PTRACE_SETFPREGS PT_SETFPREGS #endif -static int +static PTRACE_TYPE_RET gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr) { #ifdef __NetBSD__ diff --git a/gdb/x86-bsd-nat.c b/gdb/x86-bsd-nat.c index 9e2bea1..e2ebf5f 100644 --- a/gdb/x86-bsd-nat.c +++ b/gdb/x86-bsd-nat.c @@ -33,7 +33,7 @@ #include "inf-ptrace.h" -static int +static PTRACE_TYPE_RET gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr) { #ifdef __NetBSD__ |