blob: ee096a319fc0243a9b4376b89e567f85280aa502 [file] [log] [blame]
Elliott Hughes8daa0922011-09-11 13:46:25 -07001/*
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 Hughes5ea047b2011-09-13 14:38:18 -070021#include "heap.h" // for VERIFY_OBJECT_ENABLED
Elliott Hughes8daa0922011-09-11 13:46:25 -070022#include "logging.h"
23#include "utils.h"
24
Elliott Hughes8d768a92011-09-14 16:35:25 -070025#define CHECK_MUTEX_CALL(call, args) CHECK_PTHREAD_CALL(call, args, name_)
26
Elliott Hughes8daa0922011-09-11 13:46:25 -070027namespace art {
28
29Mutex::Mutex(const char* name) : name_(name) {
30#ifndef NDEBUG
31 pthread_mutexattr_t debug_attributes;
Elliott Hughes8d768a92011-09-14 16:35:25 -070032 CHECK_MUTEX_CALL(pthread_mutexattr_init, (&debug_attributes));
Elliott Hughes8daa0922011-09-11 13:46:25 -070033#if VERIFY_OBJECT_ENABLED
Elliott Hughes8d768a92011-09-14 16:35:25 -070034 CHECK_MUTEX_CALL(pthread_mutexattr_settype, (&debug_attributes, PTHREAD_MUTEX_RECURSIVE));
Elliott Hughes8daa0922011-09-11 13:46:25 -070035#else
Elliott Hughes8d768a92011-09-14 16:35:25 -070036 CHECK_MUTEX_CALL(pthread_mutexattr_settype, (&debug_attributes, PTHREAD_MUTEX_ERRORCHECK));
Elliott Hughes8daa0922011-09-11 13:46:25 -070037#endif
Elliott Hughes8d768a92011-09-14 16:35:25 -070038 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, &debug_attributes));
39 CHECK_MUTEX_CALL(pthread_mutexattr_destroy, (&debug_attributes));
Elliott Hughes8daa0922011-09-11 13:46:25 -070040#else
Elliott Hughes8d768a92011-09-14 16:35:25 -070041 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, NULL));
Elliott Hughes8daa0922011-09-11 13:46:25 -070042#endif
43}
44
45Mutex::~Mutex() {
Elliott Hughes8d768a92011-09-14 16:35:25 -070046 CHECK_MUTEX_CALL(pthread_mutex_destroy, (&mutex_));
Elliott Hughes8daa0922011-09-11 13:46:25 -070047}
48
49void Mutex::Lock() {
Elliott Hughes8d768a92011-09-14 16:35:25 -070050 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
Elliott Hughes8daa0922011-09-11 13:46:25 -070051}
52
53bool Mutex::TryLock() {
54 int result = pthread_mutex_trylock(&mutex_);
55 if (result == EBUSY) {
56 return false;
57 }
58 if (result != 0) {
59 errno = result;
Elliott Hughes8d768a92011-09-14 16:35:25 -070060 PLOG(FATAL) << "pthread_mutex_trylock failed for " << name_;
Elliott Hughes8daa0922011-09-11 13:46:25 -070061 }
62 return true;
63}
64
65void Mutex::Unlock() {
Elliott Hughes8d768a92011-09-14 16:35:25 -070066 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
Elliott Hughes8daa0922011-09-11 13:46:25 -070067}
68
69pid_t Mutex::GetOwner() {
Elliott Hughes3147a232011-10-12 15:55:07 -070070#if defined(__BIONIC__)
Elliott Hughes8daa0922011-09-11 13:46:25 -070071 return static_cast<pid_t>((mutex_.value >> 16) & 0xffff);
Elliott Hughes3147a232011-10-12 15:55:07 -070072#elif defined(__GLIBC__)
73 struct __attribute__((__may_alias__)) glibc_pthread_t {
74 int lock;
75 unsigned int count;
76 int owner;
77 // ...other stuff we don't care about.
78 };
79 return reinterpret_cast<glibc_pthread_t*>(&mutex_)->owner;
Elliott Hughes8daa0922011-09-11 13:46:25 -070080#else
81 UNIMPLEMENTED(FATAL);
82 return 0;
83#endif
84}
85
86pid_t Mutex::GetTid() {
87 return art::GetTid();
88}
89
Elliott Hughes5f791332011-09-15 17:45:30 -070090ConditionVariable::ConditionVariable(const std::string& name) : name_(name) {
91 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, NULL));
92}
93
94ConditionVariable::~ConditionVariable() {
95 CHECK_MUTEX_CALL(pthread_cond_destroy, (&cond_));
96}
97
98void ConditionVariable::Broadcast() {
99 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
100}
101
102void ConditionVariable::Signal() {
103 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
104}
105
106void ConditionVariable::Wait(Mutex& mutex) {
107 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, mutex.GetImpl()));
108}
109
110void ConditionVariable::TimedWait(Mutex& mutex, const timespec& ts) {
111#ifdef HAVE_TIMEDWAIT_MONOTONIC
112#define TIMEDWAIT pthread_cond_timedwait_monotonic
113#else
114#define TIMEDWAIT pthread_cond_timedwait
115#endif
116 int rc = TIMEDWAIT(&cond_, mutex.GetImpl(), &ts);
117 if (rc != 0 && rc != ETIMEDOUT) {
118 errno = rc;
119 PLOG(FATAL) << "TimedWait failed for " << name_;
120 }
121}
122
Elliott Hughes8daa0922011-09-11 13:46:25 -0700123} // namespace