blob: 6494723030df24419a785d91a1f6a5f2eb60e51b [file] [log] [blame]
David Hucdc51fb2021-04-06 18:10:46 +08001/*
2 * Copyright (c) 2017-2019, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef __OS_WRAPPER_COMMON_H__
9#define __OS_WRAPPER_COMMON_H__
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15#include <stdint.h>
16
17#define OS_WRAPPER_SUCCESS (0x0)
18#define OS_WRAPPER_ERROR (0xFFFFFFFFU)
19#define OS_WRAPPER_WAIT_FOREVER (0xFFFFFFFFU)
20#define OS_WRAPPER_DEFAULT_STACK_SIZE (-1)
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif /* __OS_WRAPPER_COMMON_H__ */