Thread-local storage

suggest change

Thread-local storage can be created using the thread_local keyword. A variable declared with the thread_local specifier is said to have thread storage duration.

Example:

void debug_counter() {
    thread_local int count = 0;
    Logger::log("This function has been called %d times by this thread", ++count);
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents