This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Does Java use native threads of the OS?? If not, is there a possible way to tell JVM to use these??? Using native threads of the OS boosts the performance. Thanx
Ajith Kallambella
Sheriff
Joined: Mar 17, 2000
Posts: 5782
posted
0
All Java threads share the same process space and an exception to this is Native threads. Only some compilers support native threads ( IBM's JDK for AIX is an example ). Using native threads certainly improves performance. Ajith
Open Group Certified Distinguished IT Architect. Open Group Certified Master IT Architect. Sun Certified Architect (SCEA).
Glade Wishart
Ranch Hand
Joined: Nov 03, 2000
Posts: 30
posted
0
Java has built-in multithreading which includes multithreading primitives as part of the language itself. C and C++ do not have built-in multithreading therefore they must make calls to the operating system multithreading primitives to accomplish the same tasks. Hopefully, this helps.
David Wiser
Greenhorn
Joined: Jan 16, 2001
Posts: 4
posted
0
Also pay attention to the behavior of Thread.sleep(int) in your code. If you're running under Solaris, which uses 'native' threads, these threads are cooperative, not preemptive within the JRE. Under NT, you don't need to call sleep(), but under Solaris, you do in order for same-priority threads to get CPU time. If your threads aren't getting enough time, try putting a sleep(1) call in.