2009-07-03 06:48:23 +08:00
|
|
|
/*
|
|
|
|
* File : idle.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
2012-03-17 14:43:49 +08:00
|
|
|
* COPYRIGHT (C) 2006 - 2012, RT-Thread Development Team
|
2009-07-03 06:48:23 +08:00
|
|
|
*
|
2013-06-24 17:06:09 +08:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
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.
|
2012-12-29 20:29:03 +08:00
|
|
|
* 2012-12-29 Bernard fix compiling warning.
|
2009-07-03 06:48:23 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rthw.h>
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
2011-03-04 17:16:41 +08:00
|
|
|
#ifndef IDLE_THREAD_STACK_SIZE
|
2009-07-03 06:48:23 +08:00
|
|
|
#if defined (RT_USING_HOOK) || defined(RT_USING_HEAP)
|
2012-12-20 15:55:05 +08:00
|
|
|
#define IDLE_THREAD_STACK_SIZE 256
|
2009-07-03 06:48:23 +08:00
|
|
|
#else
|
2012-12-20 15:55:05 +08:00
|
|
|
#define IDLE_THREAD_STACK_SIZE 128
|
2009-07-03 06:48:23 +08:00
|
|
|
#endif
|
2011-03-04 17:16:41 +08:00
|
|
|
#endif
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
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];
|
|
|
|
|
|
|
|
extern rt_list_t rt_thread_defunct;
|
|
|
|
|
|
|
|
#ifdef RT_USING_HOOK
|
|
|
|
/**
|
|
|
|
* @addtogroup Hook
|
|
|
|
*/
|
2012-03-17 14:43:49 +08:00
|
|
|
|
2009-07-03 06:48:23 +08:00
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2012-12-29 20:29:03 +08:00
|
|
|
void rt_thread_idle_sethook(void (*hook)(void))
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-12-20 15:55:05 +08:00
|
|
|
rt_thread_idle_hook = hook;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2012-03-17 14:43:49 +08:00
|
|
|
|
2009-07-03 06:48:23 +08:00
|
|
|
/*@}*/
|
|
|
|
#endif
|
|
|
|
|
2010-08-05 16:16:30 +08:00
|
|
|
/**
|
2010-11-29 08:04:55 +08:00
|
|
|
* @ingroup Thread
|
|
|
|
*
|
|
|
|
* This function will perform system background job when system idle.
|
2010-08-05 16:16:30 +08:00
|
|
|
*/
|
|
|
|
void rt_thread_idle_excute(void)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-12-20 15:55:05 +08:00
|
|
|
/* check the defunct thread list */
|
|
|
|
if (!rt_list_isempty(&rt_thread_defunct))
|
|
|
|
{
|
|
|
|
rt_base_t lock;
|
|
|
|
rt_thread_t thread;
|
2010-08-05 16:16:30 +08:00
|
|
|
#ifdef RT_USING_MODULE
|
2012-12-20 15:55:05 +08:00
|
|
|
rt_module_t module = RT_NULL;
|
2009-07-03 06:48:23 +08:00
|
|
|
#endif
|
2012-12-20 15:55:05 +08:00
|
|
|
RT_DEBUG_NOT_IN_INTERRUPT;
|
|
|
|
|
|
|
|
/* disable interrupt */
|
|
|
|
lock = rt_hw_interrupt_disable();
|
|
|
|
|
|
|
|
/* re-check whether list is empty */
|
|
|
|
if (!rt_list_isempty(&rt_thread_defunct))
|
|
|
|
{
|
|
|
|
/* 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
|
2012-12-20 15:55:05 +08:00
|
|
|
/* get thread's parent module */
|
|
|
|
module = (rt_module_t)thread->module_id;
|
|
|
|
|
|
|
|
/* if the thread is module's main thread */
|
|
|
|
if (module != RT_NULL && module->module_thread == thread)
|
|
|
|
{
|
|
|
|
/* detach module's main thread */
|
|
|
|
module->module_thread = RT_NULL;
|
|
|
|
}
|
2010-04-23 22:23:23 +08:00
|
|
|
#endif
|
2012-12-20 15:55:05 +08:00
|
|
|
/* remove defunct thread */
|
|
|
|
rt_list_remove(&(thread->tlist));
|
|
|
|
/* 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_TRUE)
|
|
|
|
{
|
|
|
|
/* enable interrupt */
|
|
|
|
rt_hw_interrupt_enable(lock);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* enable interrupt */
|
|
|
|
rt_hw_interrupt_enable(lock);
|
|
|
|
|
|
|
|
/* may the defunct thread list is removed by others, just return */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* enable interrupt */
|
|
|
|
rt_hw_interrupt_enable(lock);
|
2010-04-23 22:23:23 +08:00
|
|
|
|
2010-11-30 13:20:41 +08:00
|
|
|
#ifdef RT_USING_HEAP
|
2011-07-05 07:48:07 +08:00
|
|
|
#if defined(RT_USING_MODULE) && defined(RT_USING_SLAB)
|
2012-12-20 15:55:05 +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
|
2012-12-20 15:55:05 +08:00
|
|
|
/* release thread's stack */
|
2013-04-25 14:22:07 +08:00
|
|
|
RT_KERNEL_FREE(thread->stack_addr);
|
2012-12-20 15:55:05 +08:00
|
|
|
/* delete thread object */
|
|
|
|
rt_object_delete((rt_object_t)thread);
|
2011-07-05 07:48:07 +08:00
|
|
|
#endif
|
2010-09-25 23:30:25 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_MODULE
|
2012-12-20 15:55:05 +08:00
|
|
|
if (module != RT_NULL)
|
|
|
|
{
|
|
|
|
extern rt_err_t rt_module_destroy(rt_module_t module);
|
|
|
|
|
|
|
|
/* 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))
|
|
|
|
{
|
|
|
|
module->nref --;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* destroy module */
|
|
|
|
if (module->nref == 0)
|
|
|
|
rt_module_destroy(module);
|
|
|
|
}
|
2010-11-18 00:17:07 +08:00
|
|
|
#endif
|
2012-12-20 15:55:05 +08:00
|
|
|
}
|
2010-08-05 16:16:30 +08:00
|
|
|
}
|
|
|
|
|
2011-09-21 11:56:42 +08:00
|
|
|
static void rt_thread_idle_entry(void *parameter)
|
2010-08-05 16:16:30 +08:00
|
|
|
{
|
2012-12-20 15:55:05 +08:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
#ifdef RT_USING_HOOK
|
|
|
|
if (rt_thread_idle_hook != RT_NULL)
|
|
|
|
rt_thread_idle_hook();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
rt_thread_idle_excute();
|
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-11-29 08:04:55 +08:00
|
|
|
* @ingroup SymstemInit
|
|
|
|
*
|
2009-07-03 06:48:23 +08:00
|
|
|
* This function will initialize idle thread, then start it.
|
|
|
|
*
|
|
|
|
* @note this function must be invoked when system init.
|
|
|
|
*/
|
2011-09-19 15:15:31 +08:00
|
|
|
void rt_thread_idle_init(void)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2012-12-20 15:55:05 +08:00
|
|
|
/* initialize 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);
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|