idle.c 4.0 KB
Newer Older
1 2 3
/*
 * File      : idle.c
 * This file is part of RT-Thread RTOS
D
dzzxzz 已提交
4
 * COPYRIGHT (C) 2006 - 2012, 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
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-03-23     Bernard      the first version
13
 * 2010-11-10     Bernard      add cleanup callback function in thread exit.
14 15 16 17 18
 */

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

19
#ifndef IDLE_THREAD_STACK_SIZE
20 21 22 23 24
#if defined (RT_USING_HOOK) || defined(RT_USING_HEAP)
#define IDLE_THREAD_STACK_SIZE	256
#else
#define IDLE_THREAD_STACK_SIZE	128
#endif
25
#endif
26 27

static struct rt_thread idle;
28
ALIGN(RT_ALIGN_SIZE)
29 30 31 32 33 34 35 36
static rt_uint8_t rt_thread_stack[IDLE_THREAD_STACK_SIZE];

extern rt_list_t rt_thread_defunct;

#ifdef RT_USING_HOOK
/**
 * @addtogroup Hook
 */
D
dzzxzz 已提交
37

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
/*@{*/

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;
}
D
dzzxzz 已提交
53

54 55 56
/*@}*/
#endif

B
bernard.xiong 已提交
57
/**
B
bernard.xiong@gmail.com 已提交
58 59 60
 * @ingroup Thread
 *
 * This function will perform system background job when system idle.
B
bernard.xiong 已提交
61 62
 */
void rt_thread_idle_excute(void)
63
{
B
bernard.xiong 已提交
64 65
	/* check the defunct thread list */
	if (!rt_list_isempty(&rt_thread_defunct))
66
	{
B
bernard.xiong 已提交
67 68 69
		rt_base_t lock;
		rt_thread_t thread;
#ifdef RT_USING_MODULE
qiuyiuestc's avatar
qiuyiuestc 已提交
70
		rt_module_t module = RT_NULL;
71
#endif
72 73
		RT_DEBUG_NOT_IN_INTERRUPT;

B
bernard.xiong 已提交
74 75 76 77
		/* disable interrupt */
		lock = rt_hw_interrupt_disable();

		/* re-check whether list is empty */
78 79
		if (!rt_list_isempty(&rt_thread_defunct))
		{
B
bernard.xiong 已提交
80 81
			/* get defunct thread */
			thread = rt_list_entry(rt_thread_defunct.next, struct rt_thread, tlist);
qiuyiuestc's avatar
qiuyiuestc 已提交
82
#ifdef RT_USING_MODULE
qiuyiuestc's avatar
qiuyiuestc 已提交
83 84 85 86
			/* get thread's parent module */
			module = (rt_module_t)thread->module_id;

			/* if the thread is module's main thread */
D
dzzxzz 已提交
87
			if (module != RT_NULL && module->module_thread == thread)
D
dzzxzz 已提交
88
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
89 90
				/* detach module's main thread */
				module->module_thread = RT_NULL;
91
			}
qiuyiuestc's avatar
qiuyiuestc 已提交
92
#endif
B
bernard.xiong 已提交
93
			/* remove defunct thread */
94
			rt_list_remove(&(thread->tlist));
95
			/* invoke thread cleanup */
D
dzzxzz 已提交
96 97
			if (thread->cleanup != RT_NULL)
				thread->cleanup(thread);
98 99

			/* if it's a system object, not delete it */
100
			if (rt_object_is_systemobject((rt_object_t)thread) == RT_TRUE)
101 102 103 104 105
			{
				/* enable interrupt */
				rt_hw_interrupt_enable(lock);
				return;
			}
B
bernard.xiong 已提交
106 107 108
		}
		else
		{
109 110 111
			/* enable interrupt */
			rt_hw_interrupt_enable(lock);

B
bernard.xiong 已提交
112 113 114
			/* may the defunct thread list is removed by others, just return */
			return;
		}
115

B
bernard.xiong 已提交
116 117
		/* enable interrupt */
		rt_hw_interrupt_enable(lock);
qiuyiuestc's avatar
qiuyiuestc 已提交
118

119
#ifdef RT_USING_HEAP
qiuyiuestc's avatar
qiuyiuestc 已提交
120
#if defined(RT_USING_MODULE) && defined(RT_USING_SLAB)
qiuyiuestc's avatar
qiuyiuestc 已提交
121
		/* the thread belongs to an application module */
D
dzzxzz 已提交
122
		if (thread->flags & RT_OBJECT_FLAG_MODULE)
qiuyiuestc's avatar
qiuyiuestc 已提交
123 124
			rt_module_free((rt_module_t)thread->module_id, thread->stack_addr);
		else
qiuyiuestc's avatar
qiuyiuestc 已提交
125
#endif
B
bernard.xiong 已提交
126 127 128 129
		/* release thread's stack */
		rt_free(thread->stack_addr);
		/* delete thread object */
		rt_object_delete((rt_object_t)thread);
qiuyiuestc's avatar
qiuyiuestc 已提交
130
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
131 132

#ifdef RT_USING_MODULE
D
dzzxzz 已提交
133
		if (module != RT_NULL)
134 135 136
		{
			extern rt_err_t rt_module_destroy(rt_module_t module);

qiuyiuestc's avatar
qiuyiuestc 已提交
137
			/* if sub thread list and main thread are all empty */
D
dzzxzz 已提交
138
			if ((module->module_thread == RT_NULL) &&
qiuyiuestc's avatar
qiuyiuestc 已提交
139 140
				rt_list_isempty(&module->module_object[RT_Object_Class_Thread].object_list) )
			{
D
dzzxzz 已提交
141 142
				module->nref --;
			}
qiuyiuestc's avatar
qiuyiuestc 已提交
143

144
			/* destroy module */
145
			if (module->nref == 0)
146
				rt_module_destroy(module);
147
		}
qiuyiuestc's avatar
qiuyiuestc 已提交
148
#endif
149
	}
B
bernard.xiong 已提交
150 151
}

D
dzzxzz 已提交
152
static void rt_thread_idle_entry(void *parameter)
B
bernard.xiong 已提交
153 154 155
{
	while (1)
	{
156 157 158 159
		#ifdef RT_USING_HOOK
		if (rt_thread_idle_hook != RT_NULL)
			rt_thread_idle_hook();
		#endif
B
bernard.xiong 已提交
160 161

		rt_thread_idle_excute();
162 163 164 165
	}
}

/**
B
bernard.xiong@gmail.com 已提交
166 167
 * @ingroup SymstemInit
 *
168 169 170 171
 * This function will initialize idle thread, then start it.
 *
 * @note this function must be invoked when system init.
 */
D
dzzxzz 已提交
172
void rt_thread_idle_init(void)
173
{
174
	/* initialize thread */
175 176 177 178 179 180 181 182 183
	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);
}