I have an application running on Linux 2.6.13 and WindRiver Linux 3.0. In Linux 2.6.13 when i do

ps -eaf | grep myapplication

the output show multiple entries of 'myapplication'

if i give the same command in WindRiver Linux 3.0, the output show only one entry of 'myapplication'

Is the difference related to the difference in OS used? Kindly tell me the reason for this?

link|improve this question

78% accept rate
feedback

4 Answers

up vote 3 down vote accepted

It's probably related to the threading library in use and/or kernel version.

The old (now very old) "Linuxthreads" threading library, used to show each thread as a "top-level" process, which would appear directly under /proc and have a distinct PID. This was one of its many drawbacks, which were fixed by:

The new (now not very new) "NPTL" threading library, which has for many years been included in every new distribution, can use kernel features to make the threads appear under the same PID. The threads are still there but are now under a "task" subdirectory in /proc so are normally ignored by "ps" (You can still see them if you want, with an appropriate option).

Both libraries implement the posix threads API (more-or-less; newer ones do more than the older ones). I expect the processes in question were multithreaded.

It is still possible to see programs linked with Linuxthreads if they were statically linked a long, long time ago. Modern kernels support this just fine.

link|improve this answer
Mark, Ya the process in my case is multithreaded – LinuxPenseur Nov 10 '10 at 15:31
feedback

Perhaps grep myapplication is also listed and that's why there are multiple entries. If not, it depends on what your application is doing, perhaps calling itself etc. You'll need to provide more information, or at least ps -eaf | grep myapplication output.

link|improve this answer
feedback

In Linux the implementation of a thread is not very different from a full process, see man clone. I suspect you are just using two different ps commands with a different default setting. ps --help will show you how to list every thread of every process.

link|improve this answer
1  
It is a bit different and depends on the threading library, which flags it passes to clone(), which affects how the thread appears to "ps" and some other things (such as whether it has its own pid) – MarkR Nov 10 '10 at 15:01
feedback

You can use "ps -efm" to list the processes and threads associated with them. Some systems show threads with the same name as the executable. There you'll see kernel threads are shown with "[ ]".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.