mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Kaspar Schleiser
56ee585c81
kaspar.schleiser@fu-berlin.de is obsolete. (2nd try, first try was overwritten by some overzealous documenter)
29 lines
586 B
C
29 lines
586 B
C
/*
|
|
* Copyright (C) 2013 Freie Universität Berlin
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
* Public License. See the file LICENSE in the top level directory for more
|
|
* details.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup core_internal
|
|
* @{
|
|
*
|
|
* @file flags.h
|
|
* @brief Misc flag definitions
|
|
*
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
*/
|
|
|
|
#ifndef _FLAGS_H
|
|
#define _FLAGS_H
|
|
|
|
#define CREATE_SLEEPING (1)
|
|
#define AUTO_FREE (2)
|
|
#define CREATE_WOUT_YIELD (4)
|
|
#define CREATE_STACKTEST (8)
|
|
|
|
/** @} */
|
|
#endif // _FLAGS_H
|