libc.c 1.2 KB
Newer Older
B
bernard 已提交
1
/*
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
B
bernard 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
B
bernard 已提交
5 6 7 8 9
 *
 * Change Logs:
 * Date           Author       Notes
 * 2017/10/15     bernard      the first version
 */
10 11 12 13 14
#include <rtthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/time.h>
B
bernard 已提交
15

16 17
#include "libc.h"

U
user 已提交
18 19 20 21
#ifdef RT_USING_PTHREADS
#include <pthread.h>
#endif

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

24
int libc_system_init(void)
25
{
26
#if defined(RT_USING_DFS_DEVFS) & defined(RT_USING_CONSOLE)
B
bernard 已提交
27
    rt_device_t dev_console;
28

B
bernard 已提交
29 30
    dev_console = rt_console_get_device();
    if (dev_console)
31
    {
B
bernard 已提交
32
    #if defined(RT_USING_POSIX)
B
bernard 已提交
33 34 35 36
        libc_stdio_set_console(dev_console->parent.name, O_RDWR);
    #else
        libc_stdio_set_console(dev_console->parent.name, O_WRONLY);
    #endif
37
    }
38

39 40 41
    /* set PATH and HOME */
    putenv("PATH=/bin");
    putenv("HOME=/home");
42
#endif /* defined(RT_USING_DFS_DEVFS) & defined(RT_USING_CONSOLE) */
B
bernard 已提交
43

44
#if defined(RT_USING_PTHREADS) && !defined(RT_USING_COMPONENTS_INIT)
45
    pthread_system_init();
46
#endif /* defined(RT_USING_PTHREADS) && !defined(RT_USING_COMPONENTS_INIT) */
47 48

    return 0;
49
}
50
INIT_COMPONENT_EXPORT(libc_system_init);