* target.h (struct thread_resume): Delete leave_stopped member.
[deliverable/binutils-gdb.git] / gdb / sol2-tdep.c
index df5dfdc2b28ddc57336bfd0ed2bb50a0aeed54c4..de9e018ffee5549999b49bca5ad13e79bb98722b 100644 (file)
@@ -1,6 +1,6 @@
 /* Target-dependent code for Solaris.
 
-   Copyright (C) 2006, 2007 Free Software Foundation, Inc.
+   Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -20,6 +20,7 @@
 #include "defs.h"
 #include "frame.h"
 #include "symtab.h"
+#include "inferior.h"
 
 #include "sol2-tdep.h"
 
@@ -34,3 +35,15 @@ sol2_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
 
   return 0;
 }
+
+/* This is how we want PTIDs from Solaris core files to be
+   printed.  */
+
+char *
+sol2_core_pid_to_str (struct gdbarch *gdbarch, ptid_t ptid)
+{
+  static char buf[80];
+
+  xsnprintf (buf, sizeof buf, "LWP %ld", ptid_get_lwp (ptid));
+  return buf;
+}
This page took 0.025002 seconds and 4 git commands to generate.