Skip to content

Commit 87ae061

Browse files
committed
Global Interpreter Lock -> global interpreter lock
1 parent fe20293 commit 87ae061

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/library/profiling-sampling.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Profiling modes
267267

268268
The sampling profiler supports three modes that control which samples are
269269
recorded. The mode determines what the profile measures: total elapsed time,
270-
CPU execution time, or time spent holding the Global Interpreter Lock.
270+
CPU execution time, or time spent holding the global interpreter lock.
271271

272272

273273
Wall-clock mode
@@ -312,7 +312,7 @@ GIL mode
312312
--------
313313

314314
GIL mode (``--mode=gil``) records samples only when the thread holds Python's
315-
Global Interpreter Lock::
315+
global interpreter lock::
316316

317317
python -m profiling.sampling run --mode=gil script.py
318318

@@ -477,7 +477,7 @@ CPU activity, enabling analysis features specific to Python's threading model.
477477
The profiler emits interval markers that appear as colored bands in the
478478
Firefox Profiler timeline:
479479

480-
- **GIL markers**: Show when threads hold or release the Global Interpreter Lock
480+
- **GIL markers**: Show when threads hold or release the global interpreter lock
481481
- **CPU markers**: Show when threads are executing on CPU versus idle
482482
- **Code type markers**: Distinguish Python code from native (C extension) code
483483
- **GC markers**: Indicate garbage collection activity

0 commit comments

Comments
 (0)