#include <xtd/threading/interlocked>
#include <xtd/threading/thread>
#include <xtd/console>
#include <xtd/random>
#include <xtd/startup>
namespace interlocked_example {
struct my_thread {
string name;
};
class my_interlocked_exchange_class {
private:
inline static int using_resource = 0;
static constexpr int num_thread_iterations = 5;
public:
static auto main() {
auto my_threads = std::array<my_thread, 10> {};
for (auto index = 0ul; index < my_threads.size(); ++index) {
my_threads[index].name = string::format("Thread{}", index + 1);
thread::sleep(rnd.next(0, 1000));
my_threads[index].thread =
thread {my_thread_proc};
my_threads[index].
thread.start(my_threads[index].name);
}
for (auto index = 0ul; index < my_threads.size(); ++index)
}
static void my_thread_proc(std::any name) {
for (auto index = 0; index < num_thread_iterations; ++index) {
use_resource(as<string>(name));
thread::sleep(1000);
}
}
static auto use_resource(const string& name)->bool {
if (0 == interlocked::exchange(using_resource, 1)) {
console::write_line("{} acquired the lock", name);
thread::sleep(500);
console::write_line("{} exiting lock", name);
interlocked::exchange(using_resource, 0);
return true;
} else {
console::write_line(" {} was denied the lock", name);
return false;
}
}
};
}
startup_(interlocked_example::my_interlocked_exchange_class::main);
Represents a pseudo-random number generator, a device that produces a sequence of numbers that meet c...
Definition random.h:40
Creates and controls a thread, sets its priority, and gets its status.
Definition thread.h:43
thread(const xtd::threading::parameterized_thread_start &start)
Initializes a new instance of the xtd::threading::thread class, specifying a delegate that allows an ...
void join()
Blocks the calling thread until this thread object terminates, while continuing to perform standard C...
#define startup_(main_method)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.h:175
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