Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* deal thread id as unsigned
@ 2007-04-16 12:02 Yoriko Komatsuzaki
  2007-04-16 14:19 ` Mark Kettenis
  0 siblings, 1 reply; 6+ messages in thread
From: Yoriko Komatsuzaki @ 2007-04-16 12:02 UTC (permalink / raw)
  To: gdb-patches

Hello.

I would like to ask you to consider this tiny patch about thread id type.
Thread id is unsigned type in Linux.

Without this patch (especially about linux-thread-db.c), thread id
display can be minus...

# Apologies in advance if this is already-known issue.

Thank you.

--- gdb-6.6/gdb/defs.org.h	2007-04-10 16:04:51.000000000 +0900
+++ gdb-6.6/gdb/defs.h	2007-04-10 16:05:06.000000000 +0900
@@ -795,7 +795,7 @@ struct ptid
     long lwp;
 
     /* Thread id */
-    long tid;
+    unsigned long tid;
   };
 
 typedef struct ptid ptid_t;
--- gdb-6.6/gdb/linux-thread-db.org.c	2007-04-10 16:55:55.000000000 +0900
+++ gdb-6.6/gdb/linux-thread-db.c	2007-04-10 16:53:30.000000000 +0900
@@ -1031,10 +1031,10 @@ thread_db_pid_to_str (ptid_t ptid)
 
       thread_info = find_thread_pid (ptid);
       if (thread_info == NULL)
-	snprintf (buf, sizeof (buf), "Thread %ld (LWP %ld) (Missing)",
+	snprintf (buf, sizeof (buf), "Thread %lu (LWP %ld) (Missing)",
 		  GET_THREAD (ptid), GET_LWP (ptid));
       else
-	snprintf (buf, sizeof (buf), "Thread %ld (LWP %ld)",
+	snprintf (buf, sizeof (buf), "Thread %lu (LWP %ld)",
 		  GET_THREAD (ptid), GET_LWP (ptid));
 
       return buf;

---
Yoriko Komatsuzaki (yoriko@sm.sony.co.jp)


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-05-14 16:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-04-16 12:02 deal thread id as unsigned Yoriko Komatsuzaki
2007-04-16 14:19 ` Mark Kettenis
2007-04-16 15:14   ` Daniel Jacobowitz
2007-04-17 14:50     ` Yoriko Komatsuzaki
2007-05-14 16:53       ` Daniel Jacobowitz
2007-05-14 16:56         ` Daniel Jacobowitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox