提交 0da8d515 编写于 作者: B Bernard.Xiong

[Libc] Change libc_system_init as INIT_COMPONENT

上级 62a0172d
...@@ -18,32 +18,38 @@ ...@@ -18,32 +18,38 @@
#endif #endif
void libc_system_init(const char* tty_name) int libc_system_init(void)
{ {
#ifdef RT_USING_DFS #ifdef RT_USING_DFS
int fd; int fd;
struct rt_device *console_dev;
#ifndef RT_USING_DFS_DEVFS #ifndef RT_USING_DFS_DEVFS
#error Please enable devfs by defining RT_USING_DFS_DEVFS in rtconfig.h #error Please enable devfs by defining RT_USING_DFS_DEVFS in rtconfig.h
#endif #endif
/* initialize console device */ console_dev = rt_console_get_device();
rt_console_init(tty_name); if (console_dev)
{
/* initialize console device */
rt_console_init(console_dev->parent.name);
/* open console as stdin/stdout/stderr */ /* open console as stdin/stdout/stderr */
fd = open("/dev/console", O_RDONLY, 0); /* for stdin */ fd = open("/dev/console", O_RDONLY, 0); /* for stdin */
fd = open("/dev/console", O_WRONLY, 0); /* for stdout */ fd = open("/dev/console", O_WRONLY, 0); /* for stdout */
fd = open("/dev/console", O_WRONLY, 0); /* for stderr */ fd = open("/dev/console", O_WRONLY, 0); /* for stderr */
/* skip warning */ /* skip warning */
fd = fd; fd = fd;
}
#endif #endif
/* set PATH and HOME */ /* set PATH and HOME */
putenv("PATH=/"); putenv("PATH=/bin");
putenv("HOME=/"); putenv("HOME=/home");
#ifdef RT_USING_PTHREADS #ifdef RT_USING_PTHREADS
pthread_system_init(); pthread_system_init();
#endif #endif
} }
INIT_COMPONENT_EXPORT(libc_system_init);
...@@ -3,15 +3,15 @@ ...@@ -3,15 +3,15 @@
#include <sys/time.h> #include <sys/time.h>
#define MILLISECOND_PER_SECOND 1000UL #define MILLISECOND_PER_SECOND 1000UL
#define MICROSECOND_PER_SECOND 1000000UL #define MICROSECOND_PER_SECOND 1000000UL
#define NANOSECOND_PER_SECOND 1000000000UL #define NANOSECOND_PER_SECOND 1000000000UL
#define MILLISECOND_PER_TICK (MILLISECOND_PER_SECOND / RT_TICK_PER_SECOND) #define MILLISECOND_PER_TICK (MILLISECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define MICROSECOND_PER_TICK (MICROSECOND_PER_SECOND / RT_TICK_PER_SECOND) #define MICROSECOND_PER_TICK (MICROSECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define NANOSECOND_PER_TICK (NANOSECOND_PER_SECOND / RT_TICK_PER_SECOND) #define NANOSECOND_PER_TICK (NANOSECOND_PER_SECOND / RT_TICK_PER_SECOND)
void libc_system_init(const char* tty_name); int libc_system_init(void);
/* some time related function */ /* some time related function */
int libc_set_time(const struct timespec *time); int libc_set_time(const struct timespec *time);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册