This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: debugging threads vs processes


> -----Original Message-----
> From: Cedric Berger [mailto:cedric@wireless-networks.com]
> There is clearly good things with LinuxThreads (i.e. simplicity, ...)
> But as long as, at least...
>   - top
>   - ps
>   - kill
>   - gdb
> 
> ... are not fixed, and to not really understand the 
> difference between a thread
> and a process, using multithreaded application in Linux will 
> remain a huge pain.
> 
I think some of this depends on what you're used to.  I've adapted to the
top and ps behavior, and I often find it useful that I can see the threads
separately.  If it automagically told me whether something was the main
thread, the manager, or another thread, that would be better still.  If it
showed me only processes, I'd be less happy.  I'm not sure what the various
standards have to say about this behavior, and that may indeed be a problem.

Gdb is different, in that it does try to understand threads, and its
attempts have mostly been getting more successful over time.  As I
understand it, there is a fair amount of infratstructure in linuxthreads to
support gdb.  Gdb seems to do fine at switching between and examining
multiple thread stacks, for example.  It's just that it still has some bugs,
including apparently waking up some blocked threads when it shouldn't.

Hans


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]