Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* Thread ID in gdbserver
@ 2005-06-06  5:25 Atsushi Nemoto
  2005-06-06 13:46 ` Daniel Jacobowitz
  0 siblings, 1 reply; 2+ messages in thread
From: Atsushi Nemoto @ 2005-06-06  5:25 UTC (permalink / raw)
  To: gdb

Hi.  In Mar 2005, the type of cont_thread, stop_thread, etc. was
changed to "unsigned long" from "int".  But there are still some codes
which assume these variables are signed numbers.

For example, in gdbserver/server.c:

unsigned long cont_thread;
...
  if (n == 1 && resume_info[0].thread != -1)
    cont_thread = resume_info[0].thread;
  else
    cont_thread = -1;
...
  if (step || sig || cont_thread > 0)

This looks very suspicious.

For now I do not know whether this is real problem, but it is
potential bug and should be fixed, isn't it?

---
Atsushi Nemoto


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

end of thread, other threads:[~2005-06-06 13:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-06-06  5:25 Thread ID in gdbserver Atsushi Nemoto
2005-06-06 13:46 ` Daniel Jacobowitz

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