Skip to content

Commit d58ad35

Browse files
committed
fix comment
1 parent 805e6b6 commit d58ad35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/object.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ _Py_ThreadId(void)
296296
#elif defined(HAVE_THREAD_ID_FALLBACK)
297297
// Hack: Using characteristics of TLS address mapping.
298298
// The address of the thread-local variable is not equal with the actual thread pointer,
299-
// However, it has the property of being fixed at runtime, with no duplication of values
299+
// However, it has the property of being fixed at Exec time, with no duplication of values
300300
// between different threads. But since it requires offset calculation, this hack is more
301301
// expensive than __builtin_thread_pointer().
302302
tid = (uintptr_t)&__tp;

0 commit comments

Comments
 (0)