Fix a use of target_mourn_inferior in windows-nat.c
authorJon Turney <jon.turney@dronecode.org.uk>
Fri, 23 Sep 2016 13:07:55 +0000 (14:07 +0100)
committerJon Turney <jon.turney@dronecode.org.uk>
Sat, 24 Sep 2016 13:49:38 +0000 (14:49 +0100)
One use of target_mourn_interior seems to have been missed in bc1e6c81

gdb/ChangeLog:

2016-09-23  Jon Turney  <jon.turney@dronecode.org.uk>

* windows-nat.c (windows_delete_thread): Adjusting call to
target_mourn_inferior to include ptid_t argument.

gdb/ChangeLog
gdb/windows-nat.c

index fd137927a9883b46bd920f1f3aced9d1aae2c4ce..a9ef3eec0616f2ea7e143c30f9065084fccd04ee 100644 (file)
@@ -1,3 +1,8 @@
+2016-09-23  Jon Turney  <jon.turney@dronecode.org.uk>
+
+       * windows-nat.c (windows_delete_thread): Adjusting call to
+       target_mourn_inferior to include ptid_t argument.
+
 2016-09-23  Tom Tromey  <tom@tromey.com>
 
        * utils.h (make_cleanup_dyn_string_delete): Remove declaration.
index 31a9ecb15c05a5c0b8dcd606098ded2deb6a7c56..c6a809b0b2f54ace8d39dd5859c721ace0aaf772 100644 (file)
@@ -2464,7 +2464,7 @@ windows_kill_inferior (struct target_ops *ops)
        break;
     }
 
-  target_mourn_inferior ();    /* Or just windows_mourn_inferior?  */
+  target_mourn_inferior (inferior_ptid);       /* Or just windows_mourn_inferior?  */
 }
 
 static void
This page took 0.029174 seconds and 4 git commands to generate.