Merge pull request #228 from prife/kernel

kernel: rearrange the header file include order
This commit is contained in:
Bernard Xiong 2014-01-11 03:58:10 -08:00
commit 97508eb48e
3 changed files with 3 additions and 6 deletions

View File

@ -21,8 +21,6 @@
#ifndef __RTDEBUG_H__
#define __RTDEBUG_H__
#include <rtconfig.h>
/* Using this macro to control all kernel debug features. */
#ifdef RT_DEBUG

View File

@ -34,8 +34,6 @@
#ifndef __RT_DEF_H__
#define __RT_DEF_H__
#include <rtconfig.h>
#ifdef __cplusplus
extern "C" {
#endif

View File

@ -31,8 +31,9 @@
#ifndef __RT_THREAD_H__
#define __RT_THREAD_H__
#include <rtdef.h>
#include <rtconfig.h>
#include <rtdebug.h>
#include <rtdef.h>
#include <rtservice.h>
#include <rtm.h>