rt-thread/components/init/components.c

93 lines
2.5 KiB
C
Raw Normal View History

/*
* File : components.c
* This file is part of RT-Thread RTOS
2013-06-26 23:25:12 +08:00
* COPYRIGHT (C) 2012 - 2013, RT-Thread Development Team
*
2013-06-26 23:25:12 +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.
*
* Change Logs:
* Date Author Notes
* 2012-09-20 Bernard Change the name to components.c
* And all components related header files.
* 2012-12-23 Bernard fix the pthread initialization issue.
2013-06-23 07:48:42 +08:00
* 2013-06-23 Bernard Add the init_call for components initialization.
*/
#include "components.h"
2013-06-23 07:48:42 +08:00
static int rti_start(void)
{
2013-06-26 23:25:12 +08:00
return 0;
2013-06-23 07:48:42 +08:00
}
INIT_EXPORT(rti_start, "0");
2013-06-23 07:48:42 +08:00
static int rti_board_end(void)
{
2013-06-26 23:25:12 +08:00
return 0;
2013-06-23 07:48:42 +08:00
}
INIT_EXPORT(rti_board_end, "1.post");
2013-06-23 07:48:42 +08:00
static int rti_end(void)
{
2013-06-26 23:25:12 +08:00
return 0;
2013-06-23 07:48:42 +08:00
}
INIT_EXPORT(rti_end,"7");
2013-06-23 07:48:42 +08:00
#if defined(_MSC_VER) || (defined(__GNUC__) && defined(__x86_64__))
/* fixed for MSC_VC and x86_64 in GNU GCC */
#define NEXT_COMPONENT_FN(fn_ptr, end) fn_ptr = _next_component_fn(fn_ptr, end)
2013-06-26 23:25:12 +08:00
const init_fn_t *_next_component_fn(const init_fn_t *fn, const init_fn_t *end)
2013-06-23 07:48:42 +08:00
{
2013-06-26 23:25:12 +08:00
unsigned int *ptr;
ptr = (unsigned int*) (fn + 1);
while ((*ptr == 0) && ((unsigned int*)ptr < (unsigned int*)end))
ptr ++;
2013-06-26 23:25:12 +08:00
return (const init_fn_t*)ptr;
2013-06-23 07:48:42 +08:00
}
#else
2013-06-23 07:48:42 +08:00
#define NEXT_COMPONENT_FN(fn_ptr, end) fn_ptr++
#endif
2013-06-23 07:48:42 +08:00
/**
* RT-Thread Components Initialization for board
*/
void rt_components_board_init(void)
{
2013-06-26 23:25:12 +08:00
const init_fn_t *fn_ptr;
2013-06-26 23:25:12 +08:00
for (fn_ptr = &__rt_init_rti_start; fn_ptr < &__rt_init_rti_board_end; )
{
(*fn_ptr)();
NEXT_COMPONENT_FN(fn_ptr, __rt_init_rti_board_end);
}
2013-06-23 07:48:42 +08:00
}
/**
* RT-Thread Components Initialization
*/
void rt_components_init(void)
{
2013-06-26 23:25:12 +08:00
const init_fn_t *fn_ptr;
2013-06-26 23:25:12 +08:00
for (fn_ptr = &__rt_init_rti_board_end; fn_ptr < &__rt_init_rti_end; )
{
(*fn_ptr)();
NEXT_COMPONENT_FN(fn_ptr, __rt_init_rti_end);
}
}
2013-06-23 07:48:42 +08:00