[a75f3e49] | 1 | /*
|
---|
| 2 | * Copyright (c) 2018 Jaroslav Jindrak
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | #include <mutex>
|
---|
| 30 |
|
---|
| 31 | namespace std
|
---|
| 32 | {
|
---|
[5e5498e] | 33 | constexpr mutex::mutex() noexcept
|
---|
[a75f3e49] | 34 | : mtx_{}
|
---|
| 35 | {
|
---|
| 36 | fibril_mutex_initialize(&mtx_);
|
---|
| 37 | }
|
---|
| 38 |
|
---|
| 39 | mutex::~mutex()
|
---|
| 40 | {
|
---|
| 41 | if (fibril_mutex_is_locked(&mtx_))
|
---|
| 42 | {
|
---|
| 43 | /**
|
---|
| 44 | * According to the standard, this is
|
---|
| 45 | * undefined behavior, we could unlock the
|
---|
| 46 | * mutex, but that could cause issues if we
|
---|
| 47 | * are not the current owner.
|
---|
| 48 | */
|
---|
| 49 | // fibril_mutex_unlock(&mtx_);
|
---|
| 50 | }
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | void mutex::lock()
|
---|
| 54 | {
|
---|
| 55 | fibril_mutex_lock(&mtx_);
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | bool mutex::try_lock()
|
---|
| 59 | {
|
---|
| 60 | return fibril_mutex_trylock(&mtx_);
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | void mutex::unlock()
|
---|
| 64 | {
|
---|
| 65 | fibril_mutex_unlock(&mtx_);
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | mutex::native_handle_type mutex::native_handle()
|
---|
| 69 | {
|
---|
[ecb072d] | 70 | return &mtx_;
|
---|
[a75f3e49] | 71 | }
|
---|
| 72 |
|
---|
[5e5498e] | 73 | constexpr recursive_mutex::recursive_mutex() noexcept
|
---|
[a75f3e49] | 74 | : mtx_{}, lock_level_{}, owner_{}
|
---|
| 75 | {
|
---|
| 76 | fibril_mutex_initialize(&mtx_);
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | recursive_mutex::~recursive_mutex()
|
---|
| 80 | { /* DUMMY BODY */ }
|
---|
| 81 |
|
---|
| 82 | void recursive_mutex::lock()
|
---|
| 83 | {
|
---|
| 84 | if (owner_ != this_thread::get_id())
|
---|
| 85 | {
|
---|
| 86 | fibril_mutex_lock(&mtx_);
|
---|
| 87 | owner_ = this_thread::get_id();
|
---|
| 88 | lock_level_ = 1;
|
---|
| 89 | }
|
---|
| 90 | else
|
---|
| 91 | ++lock_level_;
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | bool recursive_mutex::try_lock()
|
---|
| 95 | {
|
---|
| 96 | if (owner_ != this_thread::get_id())
|
---|
| 97 | {
|
---|
| 98 | bool res = fibril_mutex_trylock(&mtx_);
|
---|
| 99 | if (res)
|
---|
| 100 | {
|
---|
| 101 | owner_ = this_thread::get_id();
|
---|
| 102 | lock_level_ = 1;
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | return res;
|
---|
| 106 | }
|
---|
| 107 | else
|
---|
| 108 | ++lock_level_;
|
---|
| 109 |
|
---|
| 110 | return true;
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | void recursive_mutex::unlock()
|
---|
| 114 | {
|
---|
| 115 | if (owner_ != this_thread::get_id())
|
---|
| 116 | return;
|
---|
| 117 | else if (--lock_level_ == 0)
|
---|
| 118 | fibril_mutex_unlock(&mtx_);
|
---|
| 119 | }
|
---|
| 120 |
|
---|
| 121 | recursive_mutex::native_handle_type recursive_mutex::native_handle()
|
---|
| 122 | {
|
---|
[ecb072d] | 123 | return &mtx_;
|
---|
[a75f3e49] | 124 | }
|
---|
| 125 | }
|
---|