rt-thread/components/libc/compilers/common/stdlib.c

50 lines
901 B
C
Raw Normal View History

2021-02-17 00:02:28 +08:00
/*
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2021-02-15 Meco Man first version
*/
#include <rtthread.h>
2021-02-17 23:50:12 +08:00
#include <stdlib.h>
2021-02-17 00:02:28 +08:00
2021-02-17 23:50:12 +08:00
void __rt_libc_exit(int status)
2021-02-17 00:02:28 +08:00
{
rt_thread_t self = rt_thread_self();
#ifdef RT_USING_MODULE
if (dlmodule_self())
{
dlmodule_exit(status);
}
#endif
if (self != RT_NULL)
{
2021-02-17 23:50:12 +08:00
if(status == EXIT_FAILURE) /* abort() */
2021-02-17 00:02:28 +08:00
{
2021-02-17 00:27:24 +08:00
rt_kprintf("thread:%s abort!\n", self->name);
2021-02-17 00:02:28 +08:00
}
else /* exit() */
{
2021-02-17 00:27:24 +08:00
rt_kprintf("thread:%s exit:%d!\n", self->name, status);
2021-02-17 00:02:28 +08:00
}
rt_thread_suspend(self);
rt_schedule();
}
}
2021-02-17 23:50:12 +08:00
void __rt_libc_abort(void)
2021-02-17 00:02:28 +08:00
{
2021-02-17 23:50:12 +08:00
__rt_libc_exit(EXIT_FAILURE);
2021-02-17 00:02:28 +08:00
}
2021-02-17 23:50:12 +08:00
int __rt_libc_system(const char *string)
2021-02-17 00:02:28 +08:00
{
/* TODO */
return 0;
}