summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'libstagefrighthw/omx/osal/inc/osal_mutex.h')
-rwxr-xr-xlibstagefrighthw/omx/osal/inc/osal_mutex.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/libstagefrighthw/omx/osal/inc/osal_mutex.h b/libstagefrighthw/omx/osal/inc/osal_mutex.h
new file mode 100755
index 0000000..21adf13
--- /dev/null
+++ b/libstagefrighthw/omx/osal/inc/osal_mutex.h
@@ -0,0 +1,36 @@
1/*
2 * Copyright (C) Texas Instruments - http://www.ti.com/
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#ifndef _OSAL_MUTEX_H_
18#define _OSAL_MUTEX_H_
19
20#ifdef __cplusplus
21extern "C"
22{
23#endif
24
25#include "osal_error.h"
26
27OSAL_ERROR OSAL_CreateMutex(void **pMutex);
28OSAL_ERROR OSAL_DeleteMutex(void *pMutex);
29OSAL_ERROR OSAL_ObtainMutex(void *pMutex, uint32_t uTimeOut);
30OSAL_ERROR OSAL_ReleaseMutex(void *pMutex);
31
32#ifdef __cplusplus
33}
34#endif
35
36#endif /* _OSAL_MUTEX_H_ */