PR libstdc++/87278 restore support for std::make_shared<volatile T>()
[official-gcc.git] / libstdc++-v3 / include / bits / std_mutex.h
blob41a9b30636a7a3d0fbdd046432bdf8dde55f5e9c
1 // std::mutex implementation -*- C++ -*-
3 // Copyright (C) 2003-2018 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file bits/std_mutex.h
26 * This is an internal header file, included by other library headers.
27 * Do not attempt to use it directly. @headername{mutex}
30 #ifndef _GLIBCXX_MUTEX_H
31 #define _GLIBCXX_MUTEX_H 1
33 #pragma GCC system_header
35 #if __cplusplus < 201103L
36 # include <bits/c++0x_warning.h>
37 #else
39 #include <system_error>
40 #include <bits/functexcept.h>
41 #include <bits/gthr.h>
43 namespace std _GLIBCXX_VISIBILITY(default)
45 _GLIBCXX_BEGIN_NAMESPACE_VERSION
47 /**
48 * @defgroup mutexes Mutexes
49 * @ingroup concurrency
51 * Classes for mutex support.
52 * @{
55 #ifdef _GLIBCXX_HAS_GTHREADS
56 // Common base class for std::mutex and std::timed_mutex
57 class __mutex_base
59 protected:
60 typedef __gthread_mutex_t __native_type;
62 #ifdef __GTHREAD_MUTEX_INIT
63 __native_type _M_mutex = __GTHREAD_MUTEX_INIT;
65 constexpr __mutex_base() noexcept = default;
66 #else
67 __native_type _M_mutex;
69 __mutex_base() noexcept
71 // XXX EAGAIN, ENOMEM, EPERM, EBUSY(may), EINVAL(may)
72 __GTHREAD_MUTEX_INIT_FUNCTION(&_M_mutex);
75 ~__mutex_base() noexcept { __gthread_mutex_destroy(&_M_mutex); }
76 #endif
78 __mutex_base(const __mutex_base&) = delete;
79 __mutex_base& operator=(const __mutex_base&) = delete;
82 /// The standard mutex type.
83 class mutex : private __mutex_base
85 public:
86 typedef __native_type* native_handle_type;
88 #ifdef __GTHREAD_MUTEX_INIT
89 constexpr
90 #endif
91 mutex() noexcept = default;
92 ~mutex() = default;
94 mutex(const mutex&) = delete;
95 mutex& operator=(const mutex&) = delete;
97 void
98 lock()
100 int __e = __gthread_mutex_lock(&_M_mutex);
102 // EINVAL, EAGAIN, EBUSY, EINVAL, EDEADLK(may)
103 if (__e)
104 __throw_system_error(__e);
107 bool
108 try_lock() noexcept
110 // XXX EINVAL, EAGAIN, EBUSY
111 return !__gthread_mutex_trylock(&_M_mutex);
114 void
115 unlock()
117 // XXX EINVAL, EAGAIN, EPERM
118 __gthread_mutex_unlock(&_M_mutex);
121 native_handle_type
122 native_handle() noexcept
123 { return &_M_mutex; }
126 #endif // _GLIBCXX_HAS_GTHREADS
128 /// Do not acquire ownership of the mutex.
129 struct defer_lock_t { explicit defer_lock_t() = default; };
131 /// Try to acquire ownership of the mutex without blocking.
132 struct try_to_lock_t { explicit try_to_lock_t() = default; };
134 /// Assume the calling thread has already obtained mutex ownership
135 /// and manage it.
136 struct adopt_lock_t { explicit adopt_lock_t() = default; };
138 /// Tag used to prevent a scoped lock from acquiring ownership of a mutex.
139 _GLIBCXX17_INLINE constexpr defer_lock_t defer_lock { };
141 /// Tag used to prevent a scoped lock from blocking if a mutex is locked.
142 _GLIBCXX17_INLINE constexpr try_to_lock_t try_to_lock { };
144 /// Tag used to make a scoped lock take ownership of a locked mutex.
145 _GLIBCXX17_INLINE constexpr adopt_lock_t adopt_lock { };
147 /** @brief A simple scoped lock type.
149 * A lock_guard controls mutex ownership within a scope, releasing
150 * ownership in the destructor.
152 template<typename _Mutex>
153 class lock_guard
155 public:
156 typedef _Mutex mutex_type;
158 explicit lock_guard(mutex_type& __m) : _M_device(__m)
159 { _M_device.lock(); }
161 lock_guard(mutex_type& __m, adopt_lock_t) noexcept : _M_device(__m)
162 { } // calling thread owns mutex
164 ~lock_guard()
165 { _M_device.unlock(); }
167 lock_guard(const lock_guard&) = delete;
168 lock_guard& operator=(const lock_guard&) = delete;
170 private:
171 mutex_type& _M_device;
174 // @} group mutexes
175 _GLIBCXX_END_NAMESPACE_VERSION
176 } // namespace
177 #endif // C++11
178 #endif // _GLIBCXX_MUTEX_H