idle.c 5.4 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
 *
B
Bernard Xiong 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
 *  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.
19 20 21 22
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-03-23     Bernard      the first version
23
 * 2010-11-10     Bernard      add cleanup callback function in thread exit.
24
 * 2012-12-29     Bernard      fix compiling warning.
25 26 27 28 29
 */

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

30
#ifndef IDLE_THREAD_STACK_SIZE
31
#if defined (RT_USING_HOOK) || defined(RT_USING_HEAP)
32
#define IDLE_THREAD_STACK_SIZE  256
33
#else
34
#define IDLE_THREAD_STACK_SIZE  128
35
#endif
36
#endif
37 38

static struct rt_thread idle;
39
ALIGN(RT_ALIGN_SIZE)
40 41 42 43 44 45 46 47
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 已提交
48

49 50 51 52 53 54 55 56 57 58 59
/*@{*/

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.
 */
60
void rt_thread_idle_sethook(void (*hook)(void))
61
{
62
    rt_thread_idle_hook = hook;
63
}
D
dzzxzz 已提交
64

65 66 67
/*@}*/
#endif

B
bernard.xiong 已提交
68
/**
B
bernard.xiong@gmail.com 已提交
69 70 71
 * @ingroup Thread
 *
 * This function will perform system background job when system idle.
B
bernard.xiong 已提交
72 73
 */
void rt_thread_idle_excute(void)
74
{
75 76 77 78 79
    /* check the defunct thread list */
    if (!rt_list_isempty(&rt_thread_defunct))
    {
        rt_base_t lock;
        rt_thread_t thread;
B
bernard.xiong 已提交
80
#ifdef RT_USING_MODULE
81
        rt_module_t module = RT_NULL;
82
#endif
83 84 85 86 87 88 89 90 91 92 93 94
        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);
qiuyiuestc's avatar
qiuyiuestc 已提交
95
#ifdef RT_USING_MODULE
96 97 98 99 100 101 102 103 104
            /* 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;
            }
qiuyiuestc's avatar
qiuyiuestc 已提交
105
#endif
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
            /* 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);
qiuyiuestc's avatar
qiuyiuestc 已提交
132

133
#ifdef RT_USING_HEAP
qiuyiuestc's avatar
qiuyiuestc 已提交
134
#if defined(RT_USING_MODULE) && defined(RT_USING_SLAB)
135 136 137 138
        /* 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
qiuyiuestc's avatar
qiuyiuestc 已提交
139
#endif
140
        /* release thread's stack */
B
Bernard Xiong 已提交
141
        RT_KERNEL_FREE(thread->stack_addr);
142 143
        /* delete thread object */
        rt_object_delete((rt_object_t)thread);
qiuyiuestc's avatar
qiuyiuestc 已提交
144
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
145 146

#ifdef RT_USING_MODULE
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
        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);
        }
qiuyiuestc's avatar
qiuyiuestc 已提交
162
#endif
163
    }
B
bernard.xiong 已提交
164 165
}

D
dzzxzz 已提交
166
static void rt_thread_idle_entry(void *parameter)
B
bernard.xiong 已提交
167
{
168 169 170 171 172 173 174 175 176
    while (1)
    {
        #ifdef RT_USING_HOOK
        if (rt_thread_idle_hook != RT_NULL)
            rt_thread_idle_hook();
        #endif

        rt_thread_idle_excute();
    }
177 178 179
}

/**
B
bernard.xiong@gmail.com 已提交
180 181
 * @ingroup SymstemInit
 *
182 183 184 185
 * This function will initialize idle thread, then start it.
 *
 * @note this function must be invoked when system init.
 */
D
dzzxzz 已提交
186
void rt_thread_idle_init(void)
187
{
188 189 190 191 192 193 194 195 196 197 198 199
    /* 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);
200
}