From 6dee9afb0eb280dfe5ffa5418f5fd073f4f2d50a Mon Sep 17 00:00:00 2001 From: Tankut Baris Aktemur Date: Mon, 17 Feb 2020 16:11:51 +0100 Subject: gdbserver: turn target op 'post_create_inferior' into a method gdbserver/ChangeLog: 2020-02-20 Tankut Baris Aktemur Turn process_stratum_target's post_create_inferior op into a method of process_target. * target.h (struct process_stratum_target): Remove the target op. (class process_target): Add the target op. (target_post_create_inferior): Update the macro. * target.cc (process_target::post_create_inferior): Define. Update the derived classes and callers below. * linux-low.cc (linux_target_ops): Update. (linux_post_create_inferior): Turn into ... (linux_process_target::post_create_inferior): ... this. * linux-low.h (class linux_process_target): Update. * lynx-low.cc (lynx_target_ops): Update. * nto-low.cc (nto_target_ops): Update. * win32-low.cc (win32_target_ops): Update. --- gdbserver/lynx-low.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'gdbserver/lynx-low.cc') diff --git a/gdbserver/lynx-low.cc b/gdbserver/lynx-low.cc index 9566e12..d9f96de 100644 --- a/gdbserver/lynx-low.cc +++ b/gdbserver/lynx-low.cc @@ -726,7 +726,6 @@ static lynx_process_target the_lynx_target; /* The LynxOS target_ops vector. */ static process_stratum_target lynx_target_ops = { - NULL, /* post_create_inferior */ lynx_attach, lynx_kill, lynx_detach, -- cgit v1.1