notebook/notes/threads/index.md

1.6 KiB

title TARGET DECK FILE TAGS tags
Threads Obsidian::STEM threads
threads

Overview

Thread-Local Storage (TLS) is a memory management method that uses static or global memory local to a thread. In C17, the keyword _Thread_local is used for defining thread-local variables.

%%ANKI Basic In the context of memory management, what is TLS an acronym for? Back: Thread-Local Storage. Reference: “Thread-Local Storage,” in Wikipedia, October 21, 2024, https://en.wikipedia.org/w/index.php?title=Thread-local_storage.

END%%

%%ANKI Basic What storage class specifier is used to modify TLS? Back: _Thread_local Reference: “Thread-Local Storage,” in Wikipedia, October 21, 2024, https://en.wikipedia.org/w/index.php?title=Thread-local_storage. Tags: c17

END%%

%%ANKI Basic What is thread-local storage? Back: A memory management method that uses static or global memory local to a thread. Reference: “Thread-Local Storage,” in Wikipedia, October 21, 2024, https://en.wikipedia.org/w/index.php?title=Thread-local_storage.

END%%

Bibliography