File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ lightweight coroutine provided to Python as a C extension module.
34
34
Greenlets all run inside of the OS process for the main
35
35
program but are scheduled cooperatively. This differs from any of
36
36
the real parallelism constructs provided by `` multiprocessing `` or
37
- `` multithreading `` libraries which do spin processes and posix threads
37
+ `` multithreading `` libraries which do spin processes and POSIX threads
38
38
which are truly parallel.
39
39
40
40
## Synchronous & Asynchronous Execution
@@ -260,8 +260,8 @@ Even though gevent is normally deterministic, sources of
260
260
non-determinism can creep into your program when you beging to
261
261
interact with outside services such as sockets and files. Thus
262
262
even though green threads are a form of "deterministic
263
- concurrency", they still can experience some of the smae problems
264
- that posix threads and processes experience.
263
+ concurrency", they still can experience some of the same problems
264
+ that POSIX threads and processes experience.
265
265
266
266
The perennial problem involved with concurrency is known as a
267
267
* race condition* . Simply put is when two concurrent threads
You can’t perform that action at this time.
0 commit comments