2009-07-03 06:48:23 +08:00
|
|
|
/*
|
|
|
|
* File : idle.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
2009-12-25 20:18:53 +08:00
|
|
|
* COPYRIGHT (C) 2006 - 2009, RT-Thread Development Team
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
2009-12-25 20:18:53 +08:00
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2006-03-23 Bernard the first version
|
2010-11-12 18:16:33 +08:00
|
|
|
* 2010-11-10 Bernard add cleanup callback function in thread exit.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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;
|
2010-06-29 17:08:24 +08:00
|
|
|
ALIGN(RT_ALIGN_SIZE)
|
2009-07-03 06:48:23 +08:00
|
|
|
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
|
|
|
|
|
2010-08-05 16:16:30 +08:00
|
|
|
/**
|
|
|
|
* This function will do some things when system idle.
|
|
|
|
*/
|
|
|
|
void rt_thread_idle_excute(void)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2010-08-05 16:16:30 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
|
|
|
/* check the defunct thread list */
|
|
|
|
if (!rt_list_isempty(&rt_thread_defunct))
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2010-08-05 16:16:30 +08:00
|
|
|
rt_base_t lock;
|
|
|
|
rt_thread_t thread;
|
|
|
|
#ifdef RT_USING_MODULE
|
2010-10-28 09:21:47 +08:00
|
|
|
rt_module_t module = RT_NULL;
|
2009-07-03 06:48:23 +08:00
|
|
|
#endif
|
2010-08-05 16:16:30 +08:00
|
|
|
/* disable interrupt */
|
|
|
|
lock = rt_hw_interrupt_disable();
|
|
|
|
|
|
|
|
/* re-check whether list is empty */
|
2009-07-03 06:48:23 +08:00
|
|
|
if (!rt_list_isempty(&rt_thread_defunct))
|
|
|
|
{
|
2010-08-05 16:16:30 +08:00
|
|
|
/* get defunct thread */
|
|
|
|
thread = rt_list_entry(rt_thread_defunct.next, struct rt_thread, tlist);
|
2010-04-23 22:23:23 +08:00
|
|
|
#ifdef RT_USING_MODULE
|
2010-10-28 09:21:47 +08:00
|
|
|
/* get thread's parent module */
|
|
|
|
module = (rt_module_t)thread->module_id;
|
|
|
|
|
|
|
|
/* if the thread is module's main thread */
|
2010-11-12 18:16:33 +08:00
|
|
|
if(module != RT_NULL && module->module_thread == thread)
|
2010-10-28 09:21:47 +08:00
|
|
|
{
|
|
|
|
/* detach module's main thread */
|
|
|
|
module->module_thread = RT_NULL;
|
2010-11-12 18:16:33 +08:00
|
|
|
}
|
2010-04-23 22:23:23 +08:00
|
|
|
#endif
|
2010-08-05 16:16:30 +08:00
|
|
|
/* remove defunct thread */
|
2009-07-03 06:48:23 +08:00
|
|
|
rt_list_remove(&(thread->tlist));
|
2010-11-12 18:16:33 +08:00
|
|
|
/* invoke thread cleanup */
|
|
|
|
if (thread->cleanup != RT_NULL) thread->cleanup(thread);
|
|
|
|
|
|
|
|
/* if it's a system object, not delete it */
|
|
|
|
if (rt_object_is_systemobject((rt_object_t)thread) == RT_EOK)
|
|
|
|
{
|
|
|
|
/* enable interrupt */
|
|
|
|
rt_hw_interrupt_enable(lock);
|
|
|
|
return;
|
|
|
|
}
|
2010-08-05 16:16:30 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-07-03 06:48:23 +08:00
|
|
|
/* enable interrupt */
|
|
|
|
rt_hw_interrupt_enable(lock);
|
|
|
|
|
2010-08-05 16:16:30 +08:00
|
|
|
/* may the defunct thread list is removed by others, just return */
|
|
|
|
return;
|
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2010-08-05 16:16:30 +08:00
|
|
|
/* enable interrupt */
|
|
|
|
rt_hw_interrupt_enable(lock);
|
2010-04-23 22:23:23 +08:00
|
|
|
|
2010-05-22 07:55:38 +08:00
|
|
|
#ifdef RT_USING_MODULE
|
2010-10-28 09:21:47 +08:00
|
|
|
/* the thread belongs to an application module */
|
|
|
|
if(thread->flags & RT_OBJECT_FLAG_MODULE)
|
|
|
|
rt_module_free((rt_module_t)thread->module_id, thread->stack_addr);
|
|
|
|
else
|
2010-04-23 22:23:23 +08:00
|
|
|
#endif
|
2010-08-05 16:16:30 +08:00
|
|
|
/* release thread's stack */
|
|
|
|
rt_free(thread->stack_addr);
|
|
|
|
/* delete thread object */
|
|
|
|
rt_object_delete((rt_object_t)thread);
|
2010-09-25 23:30:25 +08:00
|
|
|
|
|
|
|
#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);
|
|
|
|
}
|
2010-10-28 09:21:47 +08:00
|
|
|
}
|
2010-09-26 22:12:17 +08:00
|
|
|
#endif //RT_USING_MODULE
|
2010-08-05 16:16:30 +08:00
|
|
|
}
|
2010-09-26 22:12:17 +08:00
|
|
|
#endif //RT_USING_HEAP
|
2010-08-05 16:16:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
2009-07-03 06:48:23 +08:00
|
|
|
#endif
|
2010-08-05 16:16:30 +08:00
|
|
|
|
|
|
|
rt_thread_idle_excute();
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*@}*/
|