aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2023-11-21 11:42:41 -0500
committerSimon Marchi <simon.marchi@efficios.com>2023-11-21 11:44:49 -0500
commit790ce1f70c25129b35e060329cdf2915a6def9fd (patch)
treed657110b7afda91972309b3abb7d4f2d2044c0c5 /gdb
parent587a1031aa10ec3e6cd8faa7cd1bbe9a5edc3736 (diff)
downloadgdb-790ce1f70c25129b35e060329cdf2915a6def9fd.zip
gdb-790ce1f70c25129b35e060329cdf2915a6def9fd.tar.gz
gdb-790ce1f70c25129b35e060329cdf2915a6def9fd.tar.bz2
gdb: fix build of darwin-nat.c
Patch 743877128 ("gdb: remove regcache's address space") changed the signature of darwin_nat_target::cancel_breakpoint, but missing updating the class declaration, resulting in: CXX darwin-nat.o /Users/smarchi/src/binutils-gdb/gdb/darwin-nat.c:1154:20: error: out-of-line definition of 'cancel_breakpoint' does not match any declaration in 'darwin_nat_target' darwin_nat_target::cancel_breakpoint (inferior *inf, ptid_t ptid) ^~~~~~~~~~~~~~~~~ /Users/smarchi/src/binutils-gdb/gdb/darwin-nat.c:1290:9: error: too many arguments to function call, expected single argument 'ptid', have 2 arguments ptid_t (inf->pid, 0, thread->gdb_port))) ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/smarchi/src/binutils-gdb/gdb/darwin-nat.h:129:7: note: 'cancel_breakpoint' declared here int cancel_breakpoint (ptid_t ptid); ^ Fix that. Change-Id: Iedd58b36777eb77bca9e23f94882b217c9c87059
Diffstat (limited to 'gdb')
-rw-r--r--gdb/darwin-nat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/darwin-nat.h b/gdb/darwin-nat.h
index 4dd8078..1b78549 100644
--- a/gdb/darwin-nat.h
+++ b/gdb/darwin-nat.h
@@ -126,7 +126,7 @@ private:
void stop_inferior (inferior *inf);
void init_thread_list (inferior *inf);
void ptrace_him (int pid);
- int cancel_breakpoint (ptid_t ptid);
+ int cancel_breakpoint (inferior *inf, ptid_t ptid);
};
/* Describe the mach exception handling state for a task. This state is saved