Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "mutex.h" |
| 18 | |
| 19 | #include <errno.h> |
| 20 | |
Elliott Hughes | 5ea047b | 2011-09-13 14:38:18 -0700 | [diff] [blame] | 21 | #include "heap.h" // for VERIFY_OBJECT_ENABLED |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 22 | #include "logging.h" |
| 23 | #include "utils.h" |
Elliott Hughes | 6b35575 | 2012-01-13 16:49:08 -0800 | [diff] [blame] | 24 | #include "runtime.h" |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 25 | |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 26 | #define CHECK_MUTEX_CALL(call, args) CHECK_PTHREAD_CALL(call, args, name_) |
| 27 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 28 | namespace art { |
| 29 | |
| 30 | Mutex::Mutex(const char* name) : name_(name) { |
Elliott Hughes | bbd9d83 | 2011-11-07 14:40:00 -0800 | [diff] [blame] | 31 | // Like Java, we use recursive mutexes. |
| 32 | pthread_mutexattr_t attributes; |
| 33 | CHECK_MUTEX_CALL(pthread_mutexattr_init, (&attributes)); |
| 34 | CHECK_MUTEX_CALL(pthread_mutexattr_settype, (&attributes, PTHREAD_MUTEX_RECURSIVE)); |
| 35 | CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, &attributes)); |
| 36 | CHECK_MUTEX_CALL(pthread_mutexattr_destroy, (&attributes)); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | Mutex::~Mutex() { |
Elliott Hughes | 6b35575 | 2012-01-13 16:49:08 -0800 | [diff] [blame] | 40 | int rc = pthread_mutex_destroy(&mutex_); |
| 41 | if (rc != 0) { |
| 42 | errno = rc; |
| 43 | bool shutting_down = Runtime::Current()->IsShuttingDown(); |
| 44 | PLOG(shutting_down ? WARNING : FATAL) << "pthread_mutex_destroy failed for " << name_; |
| 45 | } |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | void Mutex::Lock() { |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 49 | CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_)); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | bool Mutex::TryLock() { |
| 53 | int result = pthread_mutex_trylock(&mutex_); |
| 54 | if (result == EBUSY) { |
| 55 | return false; |
| 56 | } |
| 57 | if (result != 0) { |
| 58 | errno = result; |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 59 | PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 60 | } |
| 61 | return true; |
| 62 | } |
| 63 | |
| 64 | void Mutex::Unlock() { |
Elliott Hughes | 8d768a9 | 2011-09-14 16:35:25 -0700 | [diff] [blame] | 65 | CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_)); |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | pid_t Mutex::GetOwner() { |
Elliott Hughes | 3147a23 | 2011-10-12 15:55:07 -0700 | [diff] [blame] | 69 | #if defined(__BIONIC__) |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 70 | return static_cast<pid_t>((mutex_.value >> 16) & 0xffff); |
Elliott Hughes | 3147a23 | 2011-10-12 15:55:07 -0700 | [diff] [blame] | 71 | #elif defined(__GLIBC__) |
| 72 | struct __attribute__((__may_alias__)) glibc_pthread_t { |
| 73 | int lock; |
| 74 | unsigned int count; |
| 75 | int owner; |
| 76 | // ...other stuff we don't care about. |
| 77 | }; |
| 78 | return reinterpret_cast<glibc_pthread_t*>(&mutex_)->owner; |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 79 | #else |
| 80 | UNIMPLEMENTED(FATAL); |
| 81 | return 0; |
| 82 | #endif |
| 83 | } |
| 84 | |
Brian Carlstrom | 4514d3c | 2011-10-21 17:01:31 -0700 | [diff] [blame] | 85 | void Mutex::ClearOwner() { |
| 86 | #if defined(__BIONIC__) |
| 87 | mutex_.value = 0; |
| 88 | #elif defined(__GLIBC__) |
| 89 | struct __attribute__((__may_alias__)) glibc_pthread_t { |
| 90 | int lock; |
| 91 | unsigned int count; |
| 92 | int owner; |
| 93 | // ...other stuff we don't care about. |
| 94 | }; |
| 95 | reinterpret_cast<glibc_pthread_t*>(&mutex_)->owner = 0; |
| 96 | #else |
| 97 | UNIMPLEMENTED(FATAL); |
Brian Carlstrom | 4514d3c | 2011-10-21 17:01:31 -0700 | [diff] [blame] | 98 | #endif |
| 99 | } |
| 100 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 101 | pid_t Mutex::GetTid() { |
| 102 | return art::GetTid(); |
| 103 | } |
| 104 | |
Elliott Hughes | 5f79133 | 2011-09-15 17:45:30 -0700 | [diff] [blame] | 105 | ConditionVariable::ConditionVariable(const std::string& name) : name_(name) { |
| 106 | CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, NULL)); |
| 107 | } |
| 108 | |
| 109 | ConditionVariable::~ConditionVariable() { |
| 110 | CHECK_MUTEX_CALL(pthread_cond_destroy, (&cond_)); |
| 111 | } |
| 112 | |
| 113 | void ConditionVariable::Broadcast() { |
| 114 | CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_)); |
| 115 | } |
| 116 | |
| 117 | void ConditionVariable::Signal() { |
| 118 | CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_)); |
| 119 | } |
| 120 | |
| 121 | void ConditionVariable::Wait(Mutex& mutex) { |
| 122 | CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, mutex.GetImpl())); |
| 123 | } |
| 124 | |
| 125 | void ConditionVariable::TimedWait(Mutex& mutex, const timespec& ts) { |
| 126 | #ifdef HAVE_TIMEDWAIT_MONOTONIC |
| 127 | #define TIMEDWAIT pthread_cond_timedwait_monotonic |
| 128 | #else |
| 129 | #define TIMEDWAIT pthread_cond_timedwait |
| 130 | #endif |
| 131 | int rc = TIMEDWAIT(&cond_, mutex.GetImpl(), &ts); |
| 132 | if (rc != 0 && rc != ETIMEDOUT) { |
| 133 | errno = rc; |
| 134 | PLOG(FATAL) << "TimedWait failed for " << name_; |
| 135 | } |
| 136 | } |
| 137 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 138 | } // namespace |