summaryrefslogtreecommitdiff
path: root/include/atomic_t.h
blob: e35fc187bfc3abe544d5c19a8b93ab32b4553d0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Copyright 2021 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* This file is to provide atomic_t definition */

#ifndef __CROS_EC_ATOMIC_T_H
#define __CROS_EC_ATOMIC_T_H

#ifndef CONFIG_ZEPHYR
#ifdef TEST_BUILD
typedef int atomic_t;
#else
typedef long atomic_t;
#endif
typedef atomic_t atomic_val_t;
#else
#include <sys/atomic.h>
#endif

#endif  /* __CROS_EC_ATOMIC_T_H */