idle.c 6.1 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
 * 2013-12-21     Grissiom     let rt_thread_idle_excute loop until there is no
 *                             dead thread.
27
 * 2016-08-09     ArdaFu       add method to get the handler of the idle thread.
28
 * 2018-02-07     Bernard      lock scheduler to protect tid->cleanup.
29 30 31 32 33
 */

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

X
xieyangrun 已提交
34 35
#if defined (RT_USING_HOOK)
#ifndef RT_USING_IDLE_HOOK
36
#define RT_USING_IDLE_HOOK
X
xieyangrun 已提交
37 38 39
#endif
#endif

40
#ifndef IDLE_THREAD_STACK_SIZE
X
xieyangrun 已提交
41
#if defined (RT_USING_IDLE_HOOK) || defined(RT_USING_HEAP)
42
#define IDLE_THREAD_STACK_SIZE  256
43
#else
44
#define IDLE_THREAD_STACK_SIZE  128
45
#endif
46
#endif
47 48

static struct rt_thread idle;
49
ALIGN(RT_ALIGN_SIZE)
50 51 52 53
static rt_uint8_t rt_thread_stack[IDLE_THREAD_STACK_SIZE];

extern rt_list_t rt_thread_defunct;

X
xieyangrun 已提交
54
#ifdef RT_USING_IDLE_HOOK
55 56 57
static void (*rt_thread_idle_hook)();

/**
B
bernard 已提交
58
 * @ingroup Hook
59
 * This function sets a hook function to idle thread loop. When the system performs
B
bernard 已提交
60
 * idle loop, this hook function should be invoked.
61 62 63 64 65
 *
 * @param hook the specified hook function
 *
 * @note the hook function must be simple and never be blocked or suspend.
 */
66
void rt_thread_idle_sethook(void (*hook)(void))
67
{
68
    rt_thread_idle_hook = hook;
69 70 71
}
#endif

72 73 74 75 76 77 78 79 80
/* Return whether there is defunctional thread to be deleted. */
rt_inline int _has_defunct_thread(void)
{
    /* The rt_list_isempty has prototype of "int rt_list_isempty(const rt_list_t *l)".
     * So the compiler has a good reason that the rt_thread_defunct list does
     * not change within rt_thread_idle_excute thus optimize the "while" loop
     * into a "if".
     *
     * So add the volatile qualifier here. */
81
    const volatile rt_list_t *l = (const volatile rt_list_t *)&rt_thread_defunct;
82 83 84 85

    return l->next != l;
}

B
bernard.xiong 已提交
86
/**
B
bernard.xiong@gmail.com 已提交
87 88 89
 * @ingroup Thread
 *
 * This function will perform system background job when system idle.
B
bernard.xiong 已提交
90 91
 */
void rt_thread_idle_excute(void)
92
{
93 94
    /* Loop until there is no dead thread. So one call to rt_thread_idle_excute
     * will do all the cleanups. */
95
    while (_has_defunct_thread())
96 97 98
    {
        rt_base_t lock;
        rt_thread_t thread;
B
bernard.xiong 已提交
99
#ifdef RT_USING_MODULE
100
        rt_module_t module = RT_NULL;
101
#endif
102 103 104 105 106 107
        RT_DEBUG_NOT_IN_INTERRUPT;

        /* disable interrupt */
        lock = rt_hw_interrupt_disable();

        /* re-check whether list is empty */
108
        if (_has_defunct_thread())
109 110 111 112 113
        {
            /* get defunct thread */
            thread = rt_list_entry(rt_thread_defunct.next,
                                   struct rt_thread,
                                   tlist);
qiuyiuestc's avatar
qiuyiuestc 已提交
114
#ifdef RT_USING_MODULE
115 116 117 118 119 120 121 122 123
            /* 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 已提交
124
#endif
125 126
            /* remove defunct thread */
            rt_list_remove(&(thread->tlist));
127 128 129 130

            /* lock scheduler to prevent scheduling in cleanup function. */
            rt_enter_critical();

131 132 133 134
            /* invoke thread cleanup */
            if (thread->cleanup != RT_NULL)
                thread->cleanup(thread);

B
bernard 已提交
135 136 137 138
#ifdef RT_USING_SIGNALS
            rt_thread_free_sig(thread);
#endif

139 140 141
            /* if it's a system object, not delete it */
            if (rt_object_is_systemobject((rt_object_t)thread) == RT_TRUE)
            {
142 143 144
                /* unlock scheduler */
                rt_exit_critical();

145 146 147 148 149
                /* enable interrupt */
                rt_hw_interrupt_enable(lock);

                return;
            }
150 151 152

            /* unlock scheduler */
            rt_exit_critical();
153 154 155 156 157 158 159 160 161 162 163 164
        }
        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 已提交
165

166
#ifdef RT_USING_HEAP
167 168
        /* release thread's stack */
        RT_KERNEL_FREE(thread->stack_addr);
169 170
        /* delete thread object */
        rt_object_delete((rt_object_t)thread);
qiuyiuestc's avatar
qiuyiuestc 已提交
171
#endif
172
    }
B
bernard.xiong 已提交
173 174
}

D
dzzxzz 已提交
175
static void rt_thread_idle_entry(void *parameter)
B
bernard.xiong 已提交
176
{
177 178
    while (1)
    {
179
#ifdef RT_USING_IDLE_HOOK
G
geniusgogo 已提交
180 181 182 183
        if (rt_thread_idle_hook != RT_NULL)
        {
            rt_thread_idle_hook();
        }
184
#endif
G
geniusgogo 已提交
185

186 187
        rt_thread_idle_excute();
    }
188 189 190
}

/**
B
bernard 已提交
191
 * @ingroup SystemInit
B
bernard.xiong@gmail.com 已提交
192
 *
193 194 195 196
 * This function will initialize idle thread, then start it.
 *
 * @note this function must be invoked when system init.
 */
D
dzzxzz 已提交
197
void rt_thread_idle_init(void)
198
{
199 200 201 202 203 204 205 206 207 208 209 210
    /* 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);
211
}
212 213 214 215 216 217 218 219 220 221 222

/**
 * @ingroup Thread
 *
 * This function will get the handler of the idle thread.
 *
 */
rt_thread_t rt_thread_idle_gethandler(void)
{
    return (rt_thread_t)(&idle);
}