From b02b09623dfd4e75a9f172e9d0a917e3b856b471 Mon Sep 17 00:00:00 2001 From: Markus Metzger Date: Tue, 23 Nov 2021 14:59:47 +0100 Subject: gdb, btrace: rename record_btrace_enable_warn() We use record_btrace_enable_warn() as the new-thread observer callback. It is not used in other contexts. Rename it to record_btrace_on_new_thread() to make its role more clear. --- gdb/record-btrace.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c index c594372..e6542bd 100644 --- a/gdb/record-btrace.c +++ b/gdb/record-btrace.c @@ -279,10 +279,10 @@ require_btrace (void) return &tp->btrace; } -/* Enable branch tracing for one thread. Warn on errors. */ +/* The new thread observer. */ static void -record_btrace_enable_warn (struct thread_info *tp) +record_btrace_on_new_thread (struct thread_info *tp) { /* Ignore this thread if its inferior is not recorded by us. */ target_ops *rec = tp->inf->target_at (record_stratum); @@ -306,7 +306,7 @@ record_btrace_auto_enable (void) { DEBUG ("attach thread observer"); - gdb::observers::new_thread.attach (record_btrace_enable_warn, + gdb::observers::new_thread.attach (record_btrace_on_new_thread, record_btrace_thread_observer_token, "record-btrace"); } -- cgit v1.1