libc.c 1.8 KB
Newer Older
B
bernard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * File     : libc.c
 * Brief    : gcc libc header file
 *
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2006 - 2017, RT-Thread Development Team
 *
 *  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
 * 2017/10/15     bernard      the first version
 */
26 27 28 29 30
#include <rtthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/time.h>
B
bernard 已提交
31

32 33
#include "libc.h"

U
user 已提交
34 35 36 37
#ifdef RT_USING_PTHREADS
#include <pthread.h>
#endif

B
Bernard Xiong 已提交
38 39
int	_EXFUN(putenv,(char *__string));

40
int libc_system_init(void)
41
{
42
#if defined(RT_USING_DFS) & defined(RT_USING_DFS_DEVFS)
B
bernard 已提交
43
    rt_device_t dev_console;
44

B
bernard 已提交
45 46
    dev_console = rt_console_get_device();
    if (dev_console)
47
    {
B
bernard 已提交
48
    #if defined(RT_USING_POSIX)
B
bernard 已提交
49 50 51 52
        libc_stdio_set_console(dev_console->parent.name, O_RDWR);
    #else
        libc_stdio_set_console(dev_console->parent.name, O_WRONLY);
    #endif
53
    }
54
#endif
55

56 57 58
    /* set PATH and HOME */
    putenv("PATH=/bin");
    putenv("HOME=/home");
B
bernard 已提交
59

60
#if defined RT_USING_PTHREADS && !defined RT_USING_COMPONENTS_INIT
61
    pthread_system_init();
62
#endif
63 64

    return 0;
65
}
66
INIT_COMPONENT_EXPORT(libc_system_init);