File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ struct _Py_long_state {
44
44
struct _stoptheworld_state {
45
45
PyMutex mutex ; // Serializes stop-the-world attempts.
46
46
47
- // NOTE: The below fields are protected by HEAD_LOCK(runtime), not by the
47
+ // NOTE: The fields below are protected by HEAD_LOCK(runtime), not by the
48
48
// above mutex.
49
49
bool requested ; // Set when a pause is requested.
50
50
bool world_stopped ; // Set when the world is stopped.
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ extern void _PyThreadState_Detach(PyThreadState *tstate);
154
154
// "attached" state.
155
155
extern void _PyThreadState_Park (PyThreadState * tstate );
156
156
157
- // Perform a stop-the-world pause for all threads in the all interpreters.
157
+ // Perform a stop-the-world pause for all threads in all interpreters.
158
158
//
159
159
// Threads in the "attached" state are paused and transitioned to the "GC"
160
160
// state. Threads in the "detached" state switch to the "GC" state, preventing
You can’t perform that action at this time.
0 commit comments