gdb/testsuite: link some dwarf2 tests with nopie
[deliverable/binutils-gdb.git] / gdb / inf-ptrace.h
index 7cdab9af892d44cefa86dcb0e5ad4d54bfc8219f..e2079faee3dc20c73d777f7935ad639f6a1bba81 100644 (file)
@@ -1,6 +1,6 @@
 /* Low level child interface to ptrace.
 
-   Copyright (C) 2004-2019 Free Software Foundation, Inc.
+   Copyright (C) 2004-2020 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -43,17 +43,6 @@ struct inf_ptrace_target : public inf_child_target
 
   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;
 
@@ -68,29 +57,19 @@ struct inf_ptrace_target : public inf_child_target
                                        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);
 };
 
+#ifndef __NetBSD__
 /* 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);
+   tracee identified by PTID.
 
-/* Pointer to "inf_ptrace_me_fail_reason", which implements a function
-   that can be called by "inf_ptrace_me" in order to obtain the reason
-   for a ptrace failure.  ERR is the ERRNO value set by the failing
-   ptrace call.
+   Unlike most other Operating Systems, NetBSD tracks both pid and lwp
+   and avoids this function.  */
 
-   This pointer can be overriden by targets that want to personalize
-   the error message printed when ptrace fails (see linux-nat.c, for
-   example).  */
-extern std::string (*inf_ptrace_me_fail_reason) (int err);
+extern pid_t get_ptrace_pid (ptid_t);
+#endif
 
 #endif
This page took 0.031287 seconds and 4 git commands to generate.