1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 14:03:55 +01:00
RIOT/pkg/opendsme/include/opendsme/dsme_atomic.h
2023-05-31 16:31:24 +02:00

46 lines
816 B
C

/*
* Copyright (C) 2022 HAW Hamburg
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup pkg_opendsme
*
* @{
*
* @file
*
* @author José I. Álamos <jose.alamos@haw-hamburg.de>
*/
#ifndef OPENDSME_DSME_ATOMIC_H
#define OPENDSME_DSME_ATOMIC_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Begin atomic operations on openDSME.
*
* @note Since openDSME runs on one thread, this is not required
*/
#define dsme_atomicBegin()
/**
* @brief End atomic operations on openDSME.
*
* @note Since openDSME runs on one thread, this is not required
*/
#define dsme_atomicEnd()
#endif /* OPENDSME_DSME_ATOMIC_H */
#ifdef __cplusplus
}
#endif
/** @} */