2021-02-13 15:14:07 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2021-02-13 Meco Man implement exit() and abort()
|
|
|
|
*/
|
2021-02-13 15:16:53 +08:00
|
|
|
#include <rtthread.h>
|
2021-02-13 15:14:07 +08:00
|
|
|
|
|
|
|
void exit (int status)
|
|
|
|
{
|
2021-02-17 23:50:12 +08:00
|
|
|
extern void __rt_libc_exit(int status);
|
|
|
|
__rt_libc_exit(status);
|
2021-02-17 00:18:49 +08:00
|
|
|
while(1);
|
2021-02-13 15:14:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void abort(void)
|
|
|
|
{
|
2021-02-17 23:50:12 +08:00
|
|
|
extern void __rt_libc_abort(void);
|
|
|
|
__rt_libc_abort();
|
2021-02-17 00:18:49 +08:00
|
|
|
while(1);
|
2021-02-13 15:14:07 +08:00
|
|
|
}
|