blob: ccd20b95c100599e4aebe0527c1ba49e1a90f980 [file] [log] [blame]
Jason Sams12b14ae2010-03-18 11:39:44 -07001/*
2 * Copyright (C) 2009 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 "rsSignal.h"
18
19using namespace android;
20using namespace android::renderscript;
21
22
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080023Signal::Signal() {
Jason Sams12b14ae2010-03-18 11:39:44 -070024 mSet = true;
25}
26
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080027Signal::~Signal() {
Jason Sams12b14ae2010-03-18 11:39:44 -070028 pthread_mutex_destroy(&mMutex);
29 pthread_cond_destroy(&mCondition);
30}
31
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080032bool Signal::init() {
Jason Sams12b14ae2010-03-18 11:39:44 -070033 int status = pthread_mutex_init(&mMutex, NULL);
34 if (status) {
35 LOGE("LocklessFifo mutex init failure");
36 return false;
37 }
38
39 status = pthread_cond_init(&mCondition, NULL);
40 if (status) {
41 LOGE("LocklessFifo condition init failure");
42 pthread_mutex_destroy(&mMutex);
43 return false;
44 }
45
46 return true;
47}
48
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080049void Signal::set() {
Jason Sams12b14ae2010-03-18 11:39:44 -070050 int status;
51
52 status = pthread_mutex_lock(&mMutex);
53 if (status) {
54 LOGE("LocklessCommandFifo: error %i locking for set condition.", status);
55 return;
56 }
57
58 mSet = true;
59
60 status = pthread_cond_signal(&mCondition);
61 if (status) {
62 LOGE("LocklessCommandFifo: error %i on set condition.", status);
63 }
64
65 status = pthread_mutex_unlock(&mMutex);
66 if (status) {
67 LOGE("LocklessCommandFifo: error %i unlocking for set condition.", status);
68 }
69}
70
Alex Sakhartchoukafb743a2010-11-09 17:00:54 -080071void Signal::wait() {
Jason Sams12b14ae2010-03-18 11:39:44 -070072 int status;
73
74 status = pthread_mutex_lock(&mMutex);
75 if (status) {
76 LOGE("LocklessCommandFifo: error %i locking for condition.", status);
77 return;
78 }
79
80 if (!mSet) {
81 status = pthread_cond_wait(&mCondition, &mMutex);
82 if (status) {
83 LOGE("LocklessCommandFifo: error %i waiting on condition.", status);
84 }
85 }
86 mSet = false;
87
88 status = pthread_mutex_unlock(&mMutex);
89 if (status) {
90 LOGE("LocklessCommandFifo: error %i unlocking for condition.", status);
91 }
92}
93