aboutsummaryrefslogtreecommitdiff
path: root/include/odp/api/abi-default/spinlock.h
blob: 68f8aa8aace51e5de5a6fd8d12298489c1659997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright (c) 2015-2018 Linaro Limited
 */

/**
 * @file
 *
 * ODP spinlock
 */

#ifndef ODP_ABI_SPINLOCK_H_
#define ODP_ABI_SPINLOCK_H_

#ifdef __cplusplus
extern "C" {
#endif

/** @internal */
typedef struct odp_spinlock_s {
	char lock;  /**< lock flag, should match odp_atomic_flag_t */
} odp_spinlock_t;

#ifdef __cplusplus
}
#endif

#endif