mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
28 lines
515 B
C
28 lines
515 B
C
/**
|
|
* (misc flag definitions)
|
|
*
|
|
* 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 Kaspar Schleiser <kaspar.schleiser@fu-berlin.de>
|
|
*/
|
|
|
|
#ifndef _FLAGS_H
|
|
#define _FLAGS_H
|
|
|
|
#define CREATE_WOUT_YIELD 4
|
|
#define CREATE_SLEEPING 1
|
|
#define EXPECTS_REPLY 2
|
|
#define CREATE_STACKTEST 8
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
#endif // _FLAGS_H
|
|
|