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

37 lines
638 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
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-20 11:31:58 +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
int __rt_libc_system(const char *string)
2021-02-17 00:02:28 +08:00
{
/* TODO */
return 0;
}