6#include "../date_time.h"
7#include "../icomparable.h"
8#include "../iequatable.h"
70 explicit mutex(
bool initially_owned);
75 explicit mutex(
const string& name);
81 mutex(
const string& name,
bool& created_new);
86 mutex(
bool initially_owned,
const string& name);
92 mutex(
bool initially_owned,
const string& name,
bool& created_new);
96 template <
typename char_t>
115 void close() override;
117 int32 compare_to(const
mutex& value) const noexcept override;
119 using
object::equals;
120 bool equals(const
mutex& value) const noexcept override;
130 void release_mutex();
138 bool try_lock() noexcept;
160 bool try_lock_until(const
date_time& timeout_time) noexcept;
177 static
mutex open_existing(const
string& name);
183 static
bool try_open_existing(const
string& name,
mutex& result) noexcept;
192 bool wait(
int32 milliseconds_timeout) override;
197 void create(
bool initially_owned,
bool& created_new);
Represents text as a sequence of character units.
Definition basic_string.h:79
Represents an instant in time, typically expressed as a date and time of day.
Definition date_time.h:85
Defines a generalized comparison method that a value type or class implements to create a type-specif...
Definition icomparable.h:21
Defines a generalized method that a value type or class implements to create a type-specific method f...
Definition iequatable.h:22
Provides a mechanism that synchronizes access to objects with xtd::threading::monitor.
Definition lock_guard.h:32
A synchronization primitive that can also be used for interprocess synchronization.
Definition mutex.h:50
mutex(const string &name, bool &created_new)
Initializes a new instance of the xtd::threading::mutex class with a string that is the name of the m...
mutex(bool initially_owned, const string &name)
Initializes a new instance of the xtd::threading::mutex class with a bool value that indicates whethe...
intptr native_handle_type
Rpresents the native handle type.
Definition mutex.h:59
mutex(bool initially_owned)
Initializes a new instance of the xtd::threading::mutex with a bool value that indicates whether the ...
intptr handle() const noexcept override
Gets the native operating system handle.
mutex()
Initializes a new instance of the xtd::threading::mutex class with default properties.
mutex(const string &name)
Initializes a new instance of the xtd::threading::mutex class with a string that is the name of the m...
mutex(bool initially_owned, const string &name, bool &created_new)
Initializes a new instance of the xtd::threading::mutex class with a bool value that indicates whethe...
Creates and controls a thread, sets its priority, and gets its status.
Definition thread.h:43
Contains a constant used to specify an infinite amount of time. This class cannot be inherited.
Definition timeout.h:33
Encapsulates operating system specific objects that wait for exclusive access to shared resources.
Definition wait_handle.h:52
#define core_export_
Define shared library export.
Definition core_export.h:13
int32_t int32
Represents a 32-bit signed integer.
Definition int32.h:23
intmax_t intptr
Represent a pointer or a handle.
Definition intptr.h:23
std::shared_ptr< type_t > sptr
The xtd::sptr object is a shared pointer.
Definition sptr.h:25
signal
Specifies signals that can interrupt the current process.
Definition signal.h:18
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Represents a time interval.
Definition time_span.h:29
Contains xtd::threading::wait_handle exception.