#include <xtd/collections/generic/list>
#include <xtd/threading/mutex>
#include <xtd/threading/thread>
#include <xtd/console>
#include <xtd/startup>
namespace mutex_example {
class program {
public:
static void main() {
for (
auto i = 0;
i < num_threads; ++
i) {
threads.emplace_back(thread_proc);
threads.back().name(string::format(
"thread_{0}",
i + 1));
threads.back().start();
}
}
static void thread_proc() {
for(
auto i = 0;
i < num_iterations; ++
i)
Use_resource();
}
private:
static void Use_resource() {
mut.wait_one();
mut.release_mutex();
}
inline static constexpr int num_iterations = 1;
inline static constexpr int num_threads = 3;
};
}
Represents a strongly typed list of objects that can be accessed by index. Provides methods to search...
Definition list.hpp:79
static void write_line()
Writes the current line terminator to the standard output stream using the specified format informati...
A synchronization primitive that can also be used for interprocess synchronization.
Definition mutex.hpp:50
static thread & current_thread() noexcept
Gets the currently running thread.
static void sleep(int32 milliseconds_timeout)
Suspends the current thread for a specified time.
static void join_all()
Blocks the calling thread until all joinable threads terminate.
#define startup_(main_method)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.hpp:167
@ i
The I key.
Definition console_key.hpp:104
The xtd::collections::generic namespace contains interfaces and classes that define generic collectio...
Definition comparer.hpp:16
The xtd::threading namespace provides classes and interfaces that enable multithreaded programming....
Definition abandoned_mutex_exception.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8