Home
last modified time | relevance | path

Searched refs:interps_notify (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/gdb/
Dinterps.c363 interps_notify (MethodType method, Args&&... args) in interps_notify() function
378 interps_notify (&interp::on_signal_received, sig); in interps_notify_signal_received()
386 interps_notify (&interp::on_signal_exited, sig); in interps_notify_signal_exited()
394 interps_notify (&interp::on_no_history); in interps_notify_no_history()
402 interps_notify (&interp::on_normal_stop, bs, print_frame); in interps_notify_normal_stop()
410 interps_notify (&interp::on_exited, status); in interps_notify_exited()
418 interps_notify (&interp::on_user_selected_context_changed, selection); in interps_notify_user_selected_context_changed()
426 interps_notify (&interp::on_new_thread, t); in interps_notify_new_thread()
436 interps_notify (&interp::on_thread_exited, t, exit_code, silent); in interps_notify_thread_exited()
444 interps_notify (&interp::on_inferior_added, inf); in interps_notify_inferior_added()
[all …]
/netbsd/src/external/gpl3/binutils/dist/
DChangeLog.git19580 gdb: make interps_notify work with references
19583 that interps_notify did not work with reference parameters.
19585 Fix that by changing interps_notify's `args` arg to be a universal
19592 …s-gdb/gdb/interps.c:378:18: error: no matching function for call to ‘interps_notify(void (interp::…
19593 378 | interps_notify (&interp::on_signal_received, sig);
19595 …gdb/interps.c:363:1: note: candidate: ‘template<class ... Args> void interps_notify(void (interp::…
19596 363 | interps_notify (void (interp::*method) (Args...), Args&&... args)
19600 378 | interps_notify (&interp::on_signal_received, sig);