[gdb, hurd] Repair build after "Use thread_info and inferior pointers more throughout"
authorThomas Schwinge <thomas@codesourcery.com>
Tue, 24 Jul 2018 16:04:18 +0000 (18:04 +0200)
committerThomas Schwinge <thomas@codesourcery.com>
Thu, 14 Feb 2019 15:40:36 +0000 (16:40 +0100)
..., that is commit 00431a78b28f913a9d5c912c49680e39cfd20847 causing:

    [...]/gdb/gnu-nat.c: In member function 'virtual void gnu_nat_target::detach(inferior*, int)':
    [...]/gdb/gnu-nat.c:2284:23: error: invalid conversion from 'int' to 'inferior*' [-fpermissive]
       detach_inferior (pid);
                           ^
    In file included from [...]/gdb/gnu-nat.c:61:0:
    [...]/gdb/inferior.h:523:13: note:   initializing argument 1 of 'void detach_inferior(inferior*)'
     extern void detach_inferior (inferior *inf);
                 ^~~~~~~~~~~~~~~

Fixed by inlining the removed code.

gdb/
* gnu-nat.c (gnu_nat_target::detach): Instead of
'detach_inferior (pid)' call
'detach_inferior (find_inferior_pid (pid))'.

gdb/ChangeLog
gdb/gnu-nat.c

index 2974d7275c2c514cb49eefb8daff96a6851bf6ed..71c61bc909f07a049cc0df17109edefd1c5ca0f8 100644 (file)
@@ -1,5 +1,9 @@
 2019-02-14  Thomas Schwinge  <thomas@codesourcery.com>
 
+       * gnu-nat.c (gnu_nat_target::detach): Instead of
+       'detach_inferior (pid)' call
+       'detach_inferior (find_inferior_pid (pid))'.
+
        * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
        'nat/fork-inferior.o'.
        * gnu-nat.c: #include "nat/fork-inferior.h".
index 5a47cb7d63ac694cc15ba7104bb99505b2caa5d2..67cc95c68dd151026262240083260b699760b4a8 100644 (file)
@@ -2279,7 +2279,7 @@ gnu_nat_target::detach (inferior *inf, int from_tty)
   inf_detach (gnu_current_inf);
 
   inferior_ptid = null_ptid;
-  detach_inferior (pid);
+  detach_inferior (find_inferior_pid (pid));
 
   maybe_unpush_target ();
 }