blob: 312b021d89a922878323ffed85acac8662692e1d [file] [log] [blame]
Ian Rogers81d425b2012-09-27 16:03:43 -07001/*
2 * Copyright (C) 2012 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 "locks.h"
18
19#include "mutex.h"
20
21namespace art {
22
Ian Rogers120f1c72012-09-28 17:17:10 -070023Mutex* Locks::abort_lock_ = NULL;
Ian Rogers81d425b2012-09-27 16:03:43 -070024Mutex* Locks::classlinker_classes_lock_ = NULL;
25ReaderWriterMutex* Locks::heap_bitmap_lock_ = NULL;
Ian Rogers81d425b2012-09-27 16:03:43 -070026Mutex* Locks::logging_lock_ = NULL;
Ian Rogers120f1c72012-09-28 17:17:10 -070027ReaderWriterMutex* Locks::mutator_lock_ = NULL;
28Mutex* Locks::runtime_shutdown_lock_ = NULL;
29Mutex* Locks::thread_list_lock_ = NULL;
Ian Rogers81d425b2012-09-27 16:03:43 -070030Mutex* Locks::thread_suspend_count_lock_ = NULL;
Ian Rogers120f1c72012-09-28 17:17:10 -070031Mutex* Locks::unexpected_signal_lock_ = NULL;
Ian Rogers81d425b2012-09-27 16:03:43 -070032
33void Locks::Init() {
34 if (logging_lock_ != NULL) {
35 // Already initialized.
Ian Rogers120f1c72012-09-28 17:17:10 -070036 DCHECK(abort_lock_ != NULL);
Ian Rogers81d425b2012-09-27 16:03:43 -070037 DCHECK(classlinker_classes_lock_ != NULL);
38 DCHECK(heap_bitmap_lock_ != NULL);
Ian Rogers81d425b2012-09-27 16:03:43 -070039 DCHECK(logging_lock_ != NULL);
Ian Rogers120f1c72012-09-28 17:17:10 -070040 DCHECK(mutator_lock_ != NULL);
41 DCHECK(thread_list_lock_ != NULL);
Ian Rogers81d425b2012-09-27 16:03:43 -070042 DCHECK(thread_suspend_count_lock_ != NULL);
Ian Rogers120f1c72012-09-28 17:17:10 -070043 DCHECK(unexpected_signal_lock_ != NULL);
Ian Rogers81d425b2012-09-27 16:03:43 -070044 } else {
45 logging_lock_ = new Mutex("logging lock", kLoggingLock, true);
46 abort_lock_ = new Mutex("abort lock", kAbortLock, true);
Ian Rogers120f1c72012-09-28 17:17:10 -070047
Ian Rogers81d425b2012-09-27 16:03:43 -070048 DCHECK(classlinker_classes_lock_ == NULL);
49 classlinker_classes_lock_ = new Mutex("ClassLinker classes lock", kClassLinkerClassesLock);
50 DCHECK(heap_bitmap_lock_ == NULL);
51 heap_bitmap_lock_ = new ReaderWriterMutex("heap bitmap lock", kHeapBitmapLock);
Ian Rogers120f1c72012-09-28 17:17:10 -070052 DCHECK(mutator_lock_ == NULL);
53 mutator_lock_ = new ReaderWriterMutex("mutator lock", kMutatorLock);
54 DCHECK(runtime_shutdown_lock_ == NULL);
55 runtime_shutdown_lock_ = new Mutex("runtime shutdown lock", kRuntimeShutdownLock);
56 DCHECK(thread_list_lock_ == NULL);
57 thread_list_lock_ = new Mutex("thread list lock", kThreadListLock);
Ian Rogers81d425b2012-09-27 16:03:43 -070058 DCHECK(thread_suspend_count_lock_ == NULL);
59 thread_suspend_count_lock_ = new Mutex("thread suspend count lock", kThreadSuspendCountLock);
Ian Rogers120f1c72012-09-28 17:17:10 -070060 DCHECK(unexpected_signal_lock_ == NULL);
61 unexpected_signal_lock_ = new Mutex("unexpected signal lock", kUnexpectedSignalLock, true);
Ian Rogers81d425b2012-09-27 16:03:43 -070062 }
63}
64
65} // namespace art