Disable image transport surface on all windows machines.
[chromium-blink-merge.git] / base / synchronization / lock_impl_posix.cc
blob5619adaf5d829df72f93fd57b0687d551fb9390d
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"
7 #include <errno.h>
8 #include <string.h>
10 #include "base/logging.h"
12 namespace base {
13 namespace internal {
15 LockImpl::LockImpl() {
16 #ifndef NDEBUG
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);
27 #else
28 // In release, go with the default lock attributes.
29 pthread_mutex_init(&native_handle_, NULL);
30 #endif
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);
41 return rv == 0;
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
55 } // namespace base