lwp_info: Make the arch code free arch_lwp_info
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-mips-low.c
index b4a83b0e21ea94936f55c2b76c8f13266d7d75a0..ec26c2a8c56c91bf8f96636cf790225406193cd3 100644 (file)
@@ -341,6 +341,14 @@ mips_linux_new_thread (struct lwp_info *lwp)
   lwp->arch_private = info;
 }
 
+/* Function to call when a thread is being deleted.  */
+
+static void
+mips_linux_delete_thread (struct arch_lwp_info *arch_lwp)
+{
+  xfree (arch_lwp);
+}
+
 /* Create a new mips_watchpoint and add it to the list.  */
 
 static void
@@ -893,6 +901,7 @@ struct linux_target_ops the_low_target = {
   NULL, /* siginfo_fixup */
   mips_linux_new_process,
   mips_linux_new_thread,
+  mips_linux_delete_thread,
   mips_linux_new_fork,
   mips_linux_prepare_to_resume
 };
This page took 0.026717 seconds and 4 git commands to generate.