aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 14:06:18 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:47:48 -0700
commit4072d4ff86a32410cb7073eafa5dca07e88ecc69 (patch)
tree7e3161a7acc9441ef25f58b4361c0e97149bf801
parent25da2e807e5aa1a19df0b39561d4eefcbac51503 (diff)
downloadgdb-4072d4ff86a32410cb7073eafa5dca07e88ecc69.zip
gdb-4072d4ff86a32410cb7073eafa5dca07e88ecc69.tar.gz
gdb-4072d4ff86a32410cb7073eafa5dca07e88ecc69.tar.bz2
convert to_get_trace_status
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (update_current_target): Don't inherit or default to_get_trace_status. * target.h (struct target_ops) <to_get_trace_status>: Use TARGET_DEFAULT_RETURN.
-rw-r--r--gdb/ChangeLog8
-rw-r--r--gdb/target-delegates.c16
-rw-r--r--gdb/target.c5
-rw-r--r--gdb/target.h3
4 files changed, 27 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 0302dbf..44aa4c1 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -2,6 +2,14 @@
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
+ to_get_trace_status.
+ * target.h (struct target_ops) <to_get_trace_status>: Use
+ TARGET_DEFAULT_RETURN.
+
+2014-02-19 Tom Tromey <tromey@redhat.com>
+
+ * target-delegates.c: Rebuild.
+ * target.c (update_current_target): Don't inherit or default
to_trace_start.
* target.h (struct target_ops) <to_trace_start>: Use
TARGET_DEFAULT_NORETURN.
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c
index c5b2763..cb56a3c 100644
--- a/gdb/target-delegates.c
+++ b/gdb/target-delegates.c
@@ -742,6 +742,19 @@ tdefault_trace_start (struct target_ops *self)
}
static int
+delegate_get_trace_status (struct target_ops *self, struct trace_status *arg1)
+{
+ self = self->beneath;
+ return self->to_get_trace_status (self, arg1);
+}
+
+static int
+tdefault_get_trace_status (struct target_ops *self, struct trace_status *arg1)
+{
+ return -1;
+}
+
+static int
delegate_supports_btrace (struct target_ops *self)
{
self = self->beneath;
@@ -885,6 +898,8 @@ install_delegators (struct target_ops *ops)
ops->to_trace_set_readonly_regions = delegate_trace_set_readonly_regions;
if (ops->to_trace_start == NULL)
ops->to_trace_start = delegate_trace_start;
+ if (ops->to_get_trace_status == NULL)
+ ops->to_get_trace_status = delegate_get_trace_status;
if (ops->to_supports_btrace == NULL)
ops->to_supports_btrace = delegate_supports_btrace;
}
@@ -956,5 +971,6 @@ install_dummy_methods (struct target_ops *ops)
ops->to_disable_tracepoint = tdefault_disable_tracepoint;
ops->to_trace_set_readonly_regions = tdefault_trace_set_readonly_regions;
ops->to_trace_start = tdefault_trace_start;
+ ops->to_get_trace_status = tdefault_get_trace_status;
ops->to_supports_btrace = tdefault_supports_btrace;
}
diff --git a/gdb/target.c b/gdb/target.c
index cbf18e4..4d9fa4c 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -696,7 +696,7 @@ update_current_target (void)
/* Do not inherit to_disable_tracepoint. */
/* Do not inherit to_trace_set_readonly_regions. */
/* Do not inherit to_trace_start. */
- INHERIT (to_get_trace_status, t);
+ /* Do not inherit to_get_trace_status. */
INHERIT (to_get_tracepoint_status, t);
INHERIT (to_trace_stop, t);
INHERIT (to_trace_find, t);
@@ -752,9 +752,6 @@ update_current_target (void)
(void (*) (struct target_ops *, ptid_t))
target_ignore);
current_target.to_read_description = NULL;
- de_fault (to_get_trace_status,
- (int (*) (struct target_ops *, struct trace_status *))
- return_minus_one);
de_fault (to_get_tracepoint_status,
(void (*) (struct target_ops *, struct breakpoint *,
struct uploaded_tp *))
diff --git a/gdb/target.h b/gdb/target.h
index 07ec080..85aba11 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -840,7 +840,8 @@ struct target_ops
TARGET_DEFAULT_NORETURN (tcomplain ());
/* Get the current status of a tracing run. */
- int (*to_get_trace_status) (struct target_ops *, struct trace_status *ts);
+ int (*to_get_trace_status) (struct target_ops *, struct trace_status *ts)
+ TARGET_DEFAULT_RETURN (-1);
void (*to_get_tracepoint_status) (struct target_ops *,
struct breakpoint *tp,