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.
This commit is contained in:
Markus Metzger
2021-11-23 14:59:47 +01:00
parent 5fa0c2231c
commit b02b09623d
+3 -3
View File
@@ -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");
}