When does java use native threads and when does it use green threads? Does it depend on what platform a person is using? Or their compiler? Thanks in advance, Tetsuo!
Anonymous
Ranch Hand
Joined: Nov 22, 2008
Posts: 18944
posted
0
It depends on the JVM implementation for the platform you use. Regards, G�nther. http://www.javacoding.net
Tetsuo Suzuki
Greenhorn
Joined: Feb 21, 2002
Posts: 22
posted
0
Does anyone know if the Windows JVM uses Native threads? Also, if I get a native compiler for java, will it then use Native threads for sure? Thanks, Tetsuo!
Peter den Haan
author
Ranch Hand
Joined: Apr 20, 2000
Posts: 3252
posted
0
Windows JVMs use native threads, AFAIK. A native compiler would be likely to use native threads as well. - Peter