From 54e30edd880db65bf2e14888776f6a0ce458dd3d Mon Sep 17 00:00:00 2001 From: Meco Man <920369182@qq.com> Date: Mon, 27 Sep 2021 15:53:21 -0400 Subject: [PATCH] =?UTF-8?q?[libc]=20=E6=94=AF=E6=8C=81system=E5=87=BD?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/libc/compilers/common/stdlib.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/components/libc/compilers/common/stdlib.c b/components/libc/compilers/common/stdlib.c index 9d8952e99e..16a13afb83 100644 --- a/components/libc/compilers/common/stdlib.c +++ b/components/libc/compilers/common/stdlib.c @@ -10,19 +10,26 @@ #include +#define DBG_TAG "stdlib" +#define DBG_LVL DBG_INFO +#include + void __rt_libc_exit(int status) { rt_thread_t self = rt_thread_self(); if (self != RT_NULL) { - rt_kprintf("thread:%s exit:%d!\n", self->name, status); + LOG_E("thread:%s exit:%d!", self->name, status); rt_thread_control(self, RT_THREAD_CTRL_CLOSE, RT_NULL); } } int __rt_libc_system(const char *string) { - /* TODO */ +#ifdef RT_USING_MSH + extern int msh_exec(char *cmd, rt_size_t length); + msh_exec((char*)string, rt_strlen(string)); +#endif return 0; } -- GitLab