/* * File : application.c * This file is part of RT-Thread RTOS * COPYRIGHT (C) 2006-2011, RT-Thread Develop Team * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rt-thread.org/license/LICENSE * * Change Logs: * Date Author Notes * 2010-06-25 Bernard first version * 2011-08-08 lgnq modified for Loongson LS1B */ #include #include void rt_init_thread_entry(void* parameter) { } int rt_application_init() { rt_thread_t tid; /* create initialization thread */ tid = rt_thread_create("init", rt_init_thread_entry, RT_NULL, 4096, 8, 20); if (tid != RT_NULL) rt_thread_startup(tid); return 0; }