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 #ifndef BASE_SYNCHRONIZATION_LOCK_IMPL_H_
6 #define BASE_SYNCHRONIZATION_LOCK_IMPL_H_
8 #include "build/build_config.h"
12 #elif defined(OS_POSIX)
16 #include "base/base_export.h"
17 #include "base/basictypes.h"
22 // This class implements the underlying platform-specific spin-lock mechanism
23 // used for the Lock class. Most users should not use LockImpl directly, but
24 // should instead use Lock.
25 class BASE_EXPORT LockImpl
{
28 typedef CRITICAL_SECTION NativeHandle
;
29 #elif defined(OS_POSIX)
30 typedef pthread_mutex_t NativeHandle
;
36 // If the lock is not held, take it and return true. If the lock is already
37 // held by something else, immediately return false.
40 // Take the lock, blocking until it is available if necessary.
43 // Release the lock. This must only be called by the lock's holder: after
44 // a successful call to Try, or a call to Lock.
47 // Return the native underlying lock.
48 // TODO(awalker): refactor lock and condition variables so that this is
50 NativeHandle
* native_handle() { return &native_handle_
; }
53 NativeHandle native_handle_
;
55 DISALLOW_COPY_AND_ASSIGN(LockImpl
);
58 } // namespace internal
61 #endif // BASE_SYNCHRONIZATION_LOCK_IMPL_H_