blob: 47901d346bd877ed9e245d2526509d055349fd9e [file] [log] [blame]
niklase@google.comf0779a22011-05-30 11:39:38 +00001/*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#include "rw_lock_wrapper.h"
12
13#include <assert.h>
14
15#if defined(_WIN32)
16 #include "rw_lock_windows.h"
17#elif defined(ANDROID)
18 #include <stdlib.h>
19 #include "rw_lock_generic.h"
20#else
21 #include "rw_lock_linux.h"
22#endif
23
24namespace webrtc {
25RWLockWrapper* RWLockWrapper::CreateRWLock()
26{
27#ifdef _WIN32
28 RWLockWrapper* lock = new RWLockWindows();
29#elif defined(ANDROID)
30 RWLockWrapper* lock = new RWLockWrapperGeneric();
31#else
32 RWLockWrapper* lock = new RWLockLinux();
33#endif
34 if(lock->Init() != 0)
35 {
36 delete lock;
37 assert(false);
38 return NULL;
39 }
40 return lock;
41}
42
43RWLockWrapper::~RWLockWrapper()
44{
45}
46} // namespace webrtc