@@ -411,15 +411,15 @@ on the computer look something like this::
411
411
process
412
412
OS thread (runs machine code)
413
413
414
- While a program always starts with exactly one of each of those, it may
415
- grow to include multiple of each. Hosts and processes are isolated and
416
- independent from one another. However, threads are not.
417
-
418
- Not all platforms support threads, though most do . For those that do,
419
- each thread does * run * independently, for the small segments of time it
420
- is scheduled to execute its code on the CPU. Otherwise, all threads
421
- in a process share all the process' resources, including memory.
422
- The initial thread is known as the "main" thread .
414
+ Hosts and processes are isolated and independent from one another.
415
+ However, threads are not.
416
+
417
+ While a program always starts with exactly one thread, known as the
418
+ "main" thread, it may grow to run in multiple . Not all platforms
419
+ support threads, but most do. For those that do, each thread does * run *
420
+ independently, for the small segments of time it is scheduled to execute
421
+ its code on the CPU. Otherwise, all threads in a process share all the
422
+ process' resources, including memory .
423
423
424
424
.. note ::
425
425
0 commit comments