| |||
| Home > The C and C++ libraries > __rt_exit() | |||
Defined in rt_misc.h, this function shuts
down the library but does not call functions registered with atexit(). atexit()-registered
functions are called by exit().
__rt_exit() is not part of the C library
standard, but is supported by the ARM C library as an extension.
Shuts down the C library by calling __rt_lib_shutdown(),
and then calls _sys_exit() to terminate the
application. Reimplement _sys_exit() rather
than __rt_exit().