• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

linux users: can someone explain this to me?

Ameesh

Lifer
i have some code that spawns some threads, when i use ps or top show the system process, my threads show up as processes, what is up with that?

how do i just see the processes or the threads asscoiated with them?
 
Unfortunately with the old Linux Threads library, threads will be seen as processes, making for example Java a PITA on Linux.
With the newer threading libraries(NPTL in RH9 for example) this isn't a problem.
 
Originally posted by: Sunner
Unfortunately with the old Linux Threads library, threads will be seen as processes, making for example Java a PITA on Linux.
With the newer threading libraries(NPTL in RH9 for example) this isn't a problem.

is it a seemless change? i.e. if i upgrade my libraries it will show up properly or do i have make code changes?
 
Originally posted by: Ameesh
Originally posted by: Sunner
Unfortunately with the old Linux Threads library, threads will be seen as processes, making for example Java a PITA on Linux.
With the newer threading libraries(NPTL in RH9 for example) this isn't a problem.

is it a seemless change? i.e. if i upgrade my libraries it will show up properly or do i have make code changes?

You'll have to recompile your app ... it's not a binary compatible change, which is one of the reasons RedHat 9 was a major version number instead of being RedHat 8.1.
Otyher then that, AFAIK, there are only some rare & esoteric incompatibilities between the threading libraries. My stuff made the move without a hitch FWIW.
 
Back
Top