The xtd::call_once struct can be used to execute a routine exactly once. This can be used to initialise data in a thread-safe way.
- Namespace
- xtd
- Library
- xtd.core
- Examples
- The following example shows how to use xtd::call_once struct.
#include <xtd/xtd>
auto main() -> int {
auto thread_proc = [&] {
static auto cpt = 0;
[[maybe_unused]]
static auto __call_once__ =
call_once {} + [&] {
};
if (cpt == 3) mre.set();
};
thread_pool::register_wait_for_single_object(mre, thread_proc, {}, 100, false);
mre.wait_one();
thread::join_all();
}
static void write_line()
Writes the current line terminator to the standard output stream using the specified format informati...
Represents a thread synchronization event that, when signaled, must be reset manually....
Definition manual_reset_event.h:35
The xtd::threading namespace provides classes and interfaces that enable multithreaded programming....
Definition abandoned_mutex_exception.h:11
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
The xtd::call_once struct can be used to execute a routine exactly once. This can be used to initiali...
Definition call_once.h:19
- Examples
- call_once2.cpp.
The documentation for this struct was generated from the following file: