aboutsummaryrefslogtreecommitdiff
path: root/include/odp/api/abi-default/rwlock.h
blob: 300108e6721a5c71e5fa56e99a4a76fd72b6e408 (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
28
29
30
31
32
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright (c) 2015-2018 Linaro Limited
 */

/**
 * @file
 *
 * ODP rwlock
 */

#ifndef ODP_ABI_RWLOCK_H_
#define ODP_ABI_RWLOCK_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <odp/api/atomic.h>

/** @internal */
typedef struct odp_rwlock_s {
	odp_atomic_u32_t cnt; /**< lock count
				0 lock not taken
				-1 write lock taken
				>0 read lock(s) taken */
} odp_rwlock_t;

#ifdef __cplusplus
}
#endif

#endif