From 4efeb0d3e8ee210cd61b15355cca39b16b66004d Mon Sep 17 00:00:00 2001 From: Tankut Baris Aktemur Date: Thu, 22 Apr 2021 17:22:39 +0200 Subject: gdb/continuations: turn continuation functions into inferior methods Turn continuations-related functions into methods of the inferior class. This is a refactoring. gdb/ChangeLog: 2021-04-22 Tankut Baris Aktemur * Makefile.in (COMMON_SFILES): Remove continuations.c. * inferior.c (inferior::add_continuation): New method, adapted from 'add_inferior_continuation'. (inferior::do_all_continuations): New method, adapted from 'do_all_inferior_continuations'. (inferior::~inferior): Clear the list of continuations directly. * inferior.h (class inferior) : Rename into... : ...this and make private. * continuations.c: Remove. * continuations.h: Remove. * event-top.c: Don't include "continuations.h". Update the users below. * inf-loop.c (inferior_event_handler) * infcmd.c (attach_command) (notice_new_inferior): Update. --- gdb/infcmd.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gdb/infcmd.c') diff --git a/gdb/infcmd.c b/gdb/infcmd.c index e06db49..5aa6b00 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -47,7 +47,6 @@ #include "inline-frame.h" #include "tracepoint.h" #include "inf-loop.h" -#include "continuations.h" #include "linespec.h" #include "thread-fsm.h" #include "top.h" @@ -2645,7 +2644,7 @@ attach_command (const char *args, int from_tty) inferior->control.stop_soon = STOP_QUIETLY_NO_SIGSTOP; /* Wait for stop. */ - add_inferior_continuation ([=] () + inferior->add_continuation ([=] () { attach_post_wait (from_tty, mode); }); @@ -2702,7 +2701,7 @@ notice_new_inferior (thread_info *thr, int leave_running, int from_tty) inferior->control.stop_soon = STOP_QUIETLY_REMOTE; /* Wait for stop before proceeding. */ - add_inferior_continuation ([=] () + inferior->add_continuation ([=] () { attach_post_wait (from_tty, mode); }); -- cgit v1.1