idle.c 3.4 KB
Newer Older
1 2 3
/*
 * File      : idle.c
 * This file is part of RT-Thread RTOS
B
bernard.xiong 已提交
4
 * COPYRIGHT (C) 2006 - 2009, RT-Thread Development Team
5 6 7
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
B
bernard.xiong 已提交
8
 * http://www.rt-thread.org/license/LICENSE
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-03-23     Bernard      the first version
 */

#include <rthw.h>
#include <rtthread.h>
#include "kservice.h"

#if defined (RT_USING_HOOK) || defined(RT_USING_HEAP)
#define IDLE_THREAD_STACK_SIZE	256
#else
#define IDLE_THREAD_STACK_SIZE	128
#endif

static struct rt_thread idle;
26
ALIGN(RT_ALIGN_SIZE)
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
static rt_uint8_t rt_thread_stack[IDLE_THREAD_STACK_SIZE];

#ifdef RT_USING_HEAP
extern rt_list_t rt_thread_defunct;
#endif

#ifdef RT_USING_HOOK
/**
 * @addtogroup Hook
 */
/*@{*/

static void (*rt_thread_idle_hook)();

/**
 * This function will set a hook function to idle thread loop.
 *
 * @param hook the specified hook function
 *
 * @note the hook function must be simple and never be blocked or suspend.
 */
void rt_thread_idle_sethook(void (*hook)())
{
	rt_thread_idle_hook = hook;
}
/*@}*/
#endif

B
bernard.xiong 已提交
55 56 57 58
/**
 * This function will do some things when system idle.
 */
void rt_thread_idle_excute(void)
59
{
B
bernard.xiong 已提交
60 61 62
#ifdef RT_USING_HEAP
	/* check the defunct thread list */
	if (!rt_list_isempty(&rt_thread_defunct))
63
	{
B
bernard.xiong 已提交
64 65 66 67
		rt_base_t lock;
		rt_thread_t thread;
#ifdef RT_USING_MODULE
		rt_module_t module;
68 69
#endif

B
bernard.xiong 已提交
70 71 72 73
		/* disable interrupt */
		lock = rt_hw_interrupt_disable();

		/* re-check whether list is empty */
74 75
		if (!rt_list_isempty(&rt_thread_defunct))
		{
B
bernard.xiong 已提交
76 77 78 79
			/* get defunct thread */
			thread = rt_list_entry(rt_thread_defunct.next, struct rt_thread, tlist);

			/* get thread's parent module */
qiuyiuestc's avatar
qiuyiuestc 已提交
80
#ifdef RT_USING_MODULE
B
bernard.xiong 已提交
81
			module = thread->module_parent;
qiuyiuestc's avatar
qiuyiuestc 已提交
82
#endif
B
bernard.xiong 已提交
83
			/* remove defunct thread */
84
			rt_list_remove(&(thread->tlist));
B
bernard.xiong 已提交
85 86 87
		}
		else
		{
88 89 90
			/* enable interrupt */
			rt_hw_interrupt_enable(lock);

B
bernard.xiong 已提交
91 92 93
			/* may the defunct thread list is removed by others, just return */
			return;
		}
94

B
bernard.xiong 已提交
95 96
		/* enable interrupt */
		rt_hw_interrupt_enable(lock);
qiuyiuestc's avatar
qiuyiuestc 已提交
97

98
#ifdef RT_USING_MODULE
B
bernard.xiong 已提交
99 100 101 102
		if(module != RT_NULL)
		{	
			/* if the thread is module's main thread */
			if(module->module_thread == thread)
qiuyiuestc's avatar
qiuyiuestc 已提交
103
			{	
B
bernard.xiong 已提交
104 105
				/* detach module's main thread */
				module->module_thread = RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
106
			}					
B
bernard.xiong 已提交
107
		}	
qiuyiuestc's avatar
qiuyiuestc 已提交
108
#endif
B
bernard.xiong 已提交
109 110 111 112 113
		/* release thread's stack */
		rt_free(thread->stack_addr);

		/* delete thread object */
		rt_object_delete((rt_object_t)thread);
qiuyiuestc's avatar
qiuyiuestc 已提交
114 115 116 117 118 119 120 121 122 123 124

#ifdef RT_USING_MODULE
		if(module != RT_NULL)
		{	
			/* if sub thread list and main thread are all empty */
			if((module->module_thread == RT_NULL) &&
				rt_list_isempty(&module->module_object[RT_Object_Class_Thread].object_list) )
			{
				/* unload module */
				rt_module_unload(module);
			}	
M
mbbill 已提交
125 126
		}
#endif	//RT_USING_MODULE
B
bernard.xiong 已提交
127
	}
M
mbbill 已提交
128 129
	
#endif //RT_USING_HEAP
B
bernard.xiong 已提交
130 131 132 133 134 135 136 137 138
}

static void rt_thread_idle_entry(void* parameter)
{
	while (1)
	{
#ifdef RT_USING_HOOK
		/* if there is an idle thread hook */
		if (rt_thread_idle_hook != RT_NULL) rt_thread_idle_hook();
139
#endif
B
bernard.xiong 已提交
140 141

		rt_thread_idle_excute();
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
	}
}

/**
 * @addtogroup SystemInit
 */
/*@{*/

/**
 * This function will initialize idle thread, then start it.
 *
 * @note this function must be invoked when system init.
 */
void rt_thread_idle_init()
{
	/* init thread */
	rt_thread_init(&idle,
		"tidle",
		rt_thread_idle_entry, RT_NULL,
		&rt_thread_stack[0], sizeof(rt_thread_stack),
		RT_THREAD_PRIORITY_MAX - 1, 32);

	/* startup */
	rt_thread_startup(&idle);
}

/*@}*/