Skip to content

Commit e71394c

Browse files
Do not talk about distributed computing.
1 parent f7cb965 commit e71394c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Doc/reference/executionmodel.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -411,15 +411,15 @@ on the computer look something like this::
411411
process
412412
OS thread (runs machine code)
413413

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.
423423

424424
.. note::
425425

0 commit comments

Comments
 (0)