Merge pull request #4382 from haukepetersen/rm_core_flagsh
core: move thread flags from flags.h to thread.hcc430
commit
cf53aeddd8
@ -1,42 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2014 Freie Universität Berlin
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @addtogroup core_internal
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Misc flag definitions
|
||||
*
|
||||
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||
*/
|
||||
|
||||
#ifndef FLAGS_H
|
||||
#define FLAGS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Optional flags for controlling a threads initial state.
|
||||
* @{
|
||||
*/
|
||||
#define CREATE_SLEEPING (1) /**< set the new thread to sleeping */
|
||||
#define AUTO_FREE (2) /**< currently not implemented */
|
||||
#define CREATE_WOUT_YIELD (4) /**< do not automatically call thread_yield() after creation */
|
||||
#define CREATE_STACKTEST (8) /**< write markers into the thread's stack to measure stack
|
||||
usage (for debugging) */
|
||||
/** @} */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* FLAGS_H */
|
||||
/** @} */
|
Loading…
Reference in New Issue