2010-09-22 15:10:42 +02:00
|
|
|
/**
|
|
|
|
* (misc flag definitions)
|
|
|
|
*
|
2013-06-18 17:21:38 +02:00
|
|
|
* Copyright (C) 2013 Freie Universität Berlin
|
2010-09-22 15:10:42 +02:00
|
|
|
*
|
2013-06-18 17:21:38 +02:00
|
|
|
* This file 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.
|
2010-09-22 15:10:42 +02:00
|
|
|
*
|
|
|
|
* @ingroup kernel
|
|
|
|
* @{
|
|
|
|
* @file
|
|
|
|
* @author Kaspar Schleiser <kaspar.schleiser@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FLAGS_H
|
|
|
|
#define _FLAGS_H
|
|
|
|
|
2013-06-24 22:12:57 +02:00
|
|
|
#define CREATE_SLEEPING (1)
|
|
|
|
#define AUTO_FREE (2)
|
|
|
|
#define CREATE_WOUT_YIELD (4)
|
|
|
|
#define CREATE_STACKTEST (8)
|
2010-09-22 15:10:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
#endif // _FLAGS_H
|
|
|
|
|