6 lines
330 B
Markdown
6 lines
330 B
Markdown
|
|
Why is **OS support (Native Threads)** required for true multi-processor concurrency?
|
|
|
|
---
|
|
|
|
🚀 Because Green Threads are managed inside a single OS process, they cannot be distributed across multiple physical CPUs by the OS. Only **Native Threads** allow the OS to run different Java threads on different cores simultaneously.
|