Re: Number of java instances?

Roger Marquis <[email protected]> Tue, 21 Jan 2003 12:58:35 -0800 (PST)
Newsgroups gmane.comp.web.jigsaw
Message-ID <[email protected]>
It appears this was fixed in RedHat 8.  'ps auxw| grep -i jigsaw'
in 8.0 shows only a single process.

-- 
Roger Marquis
Roble Systems Consulting
http://www.roble.com/

Yves Lafon wrote:
>Frank Kurzawa wrote:
>> I believe in Linux, each THREAD gets a separate Process ID, even though
>> it is not actually a separate process. So if, for instance, you do a ps
>> command in Linux, you will see a separate listing for each thread. OTOH,
>> in Solaris, where each thread DOES NOT get a separate Process ID, a ps
>> command will only show a single entry.
>
>That's right, in Linux, each thread is a separate process, and there is no
>notion of a global process for those threads.