1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/synchronization/lock_impl.h"
10 #include "base/logging.h"
15 LockImpl::LockImpl() {
17 // In debug, setup attributes for lock error checking.
18 pthread_mutexattr_t mta
;
19 int rv
= pthread_mutexattr_init(&mta
);
20 DCHECK_EQ(rv
, 0) << ". " << strerror(rv
);
21 rv
= pthread_mutexattr_settype(&mta
, PTHREAD_MUTEX_ERRORCHECK
);
22 DCHECK_EQ(rv
, 0) << ". " << strerror(rv
);
23 rv
= pthread_mutex_init(&native_handle_
, &mta
);
24 DCHECK_EQ(rv
, 0) << ". " << strerror(rv
);
25 rv
= pthread_mutexattr_destroy(&mta
);
26 DCHECK_EQ(rv
, 0) << ". " << strerror(rv
);
28 // In release, go with the default lock attributes.
29 pthread_mutex_init(&native_handle_
, NULL
);
33 LockImpl::~LockImpl() {
34 int rv
= pthread_mutex_destroy(&native_handle_
);
35 DCHECK_EQ(rv
, 0) << ". " << strerror(rv
);
38 bool LockImpl::Try() {
39 int rv
= pthread_mutex_trylock(&native_handle_
);
40 DCHECK(rv
== 0 || rv
== EBUSY
) << ". " << strerror(rv
);
44 void LockImpl::Lock() {
45 int rv
= pthread_mutex_lock(&native_handle_
);
46 DCHECK_EQ(rv
, 0) << ". " << strerror(rv
);
49 void LockImpl::Unlock() {
50 int rv
= pthread_mutex_unlock(&native_handle_
);
51 DCHECK_EQ(rv
, 0) << ". " << strerror(rv
);
54 } // namespace internal