brintos

brintos / linux-shallow public Read only

0
0
Text · 412 B · 01907b3 Raw
16 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __TOOLS_LINUX_ATOMIC_H3#define __TOOLS_LINUX_ATOMIC_H4 5#include <asm/atomic.h>6 7void atomic_long_set(atomic_long_t *v, long i);8 9/* atomic_cmpxchg_relaxed */10#ifndef atomic_cmpxchg_relaxed11#define  atomic_cmpxchg_relaxed		atomic_cmpxchg12#define  atomic_cmpxchg_release         atomic_cmpxchg13#endif /* atomic_cmpxchg_relaxed */14 15#endif /* __TOOLS_LINUX_ATOMIC_H */16