1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/core/include/atomic.h

29 lines
635 B
C

/**
* atomic function declarations
*
* Copyright (C) 2010 Freie Universität Berlin
*
* This file subject to the terms and conditions of the GNU General Public
* License. See the file LICENSE in the top level directory for more details.
*
* @ingroup kernel
* @{
* @file
* @author Freie Universität Berlin, Computer Systems & Telematics
* @author Kaspar Schleiser <kaspar.schleiser@fu-berlin.de>
*/
#ifndef _ATOMIC_H
#define _ATOMIC_H
/**
* @brief sets "val" to "set", returns old "val", atomically
*/
extern unsigned int atomic_set_return(unsigned int* val, unsigned int set);
/**
* @}
*/
#endif /* _ATOMIC_H */