X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Finf-ptrace.h;h=98b5d2e09e686b0c4490f1fd442e4be61bab6a61;hb=c6cbf900d42cf8f2ebbcf33d799c52c54b9aa9f0;hp=e9ceae3c9636502554f595982715430c8feedab7;hpb=5bf970f9366e676f9fdc252cc9fde31fbf84b9c4;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/inf-ptrace.h b/gdb/inf-ptrace.h index e9ceae3c96..98b5d2e09e 100644 --- a/gdb/inf-ptrace.h +++ b/gdb/inf-ptrace.h @@ -1,13 +1,12 @@ -/* Low level Unix child interface to ptrace, for GDB when running - under Unix. +/* Low level child interface to ptrace. - Copyright 2004 Free Software Foundation, Inc. + Copyright (C) 2004-2019 Free Software Foundation, Inc. This file is part of GDB. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -16,16 +15,72 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ + along with this program. If not, see . */ #ifndef INF_PTRACE_H #define INF_PTRACE_H -/* Create a prototype ptrace target. The client can override it with - local methods. */ +#include "inf-child.h" -extern struct target_ops *inf_ptrace_target (void); +/* An abstract prototype ptrace target. The client can override it + with local methods. */ + +struct inf_ptrace_target : public inf_child_target +{ + ~inf_ptrace_target () override = 0; + + void attach (const char *, int) override; + + void detach (inferior *inf, int) override; + + void resume (ptid_t, int, enum gdb_signal) override; + + ptid_t wait (ptid_t, struct target_waitstatus *, int) override; + + void files_info () override; + + void kill () override; + + void create_inferior (const char *, const std::string &, + char **, int) override; +#ifdef PT_GET_PROCESS_STATE + int follow_fork (int, int) override; + + int insert_fork_catchpoint (int) override; + + int remove_fork_catchpoint (int) override; + + void post_startup_inferior (ptid_t) override; + + void post_attach (int) override; +#endif + + void mourn_inferior () override; + + bool thread_alive (ptid_t ptid) override; + + std::string pid_to_str (ptid_t) override; + + enum target_xfer_status xfer_partial (enum target_object object, + const char *annex, + gdb_byte *readbuf, + const gdb_byte *writebuf, + ULONGEST offset, ULONGEST len, + ULONGEST *xfered_len) override; + +#if defined (PT_IO) && defined (PIOD_READ_AUXV) + int auxv_parse (gdb_byte **readptr, + gdb_byte *endptr, CORE_ADDR *typep, CORE_ADDR *valp) override; +#endif + +protected: + /* Cleanup the inferior after a successful ptrace detach. */ + void detach_success (inferior *inf); +}; + +/* Return which PID to pass to ptrace in order to observe/control the + tracee identified by PTID. */ + +extern pid_t get_ptrace_pid (ptid_t); #endif