When i start a java application, i see it running as a process on my machine. If this java application creates threads, are they mapped to native threads on the OS (similar to threads created using pthreads)?
Asked
Active
Viewed 53 times
1
-
This is out of scope for StackOverflow, but generally yes, all modern systems use native processes for implementing threads. – markspace Jan 22 '17 at 19:13
-
http://stackoverflow.com/questions/1888160/distinguish-java-threads-and-os-threads – Sotirios Delimanolis Jan 22 '17 at 19:13