mirror of
https://github.com/sipeed/MaixCDK.git
synced 2026-09-13 07:03:24 -05:00
29 lines
366 B
C++
29 lines
366 B
C++
#include "maix_util.hpp"
|
|
|
|
namespace maix::util
|
|
{
|
|
void disable_kernel_debug() {
|
|
|
|
}
|
|
|
|
void enable_kernel_debug() {
|
|
|
|
}
|
|
|
|
void register_exit_function(void (*process)(void)) {
|
|
(void)process;
|
|
}
|
|
|
|
void init_before_main() {
|
|
|
|
}
|
|
|
|
void do_exit_function() {
|
|
}
|
|
|
|
void register_atexit() {
|
|
atexit(do_exit_function);
|
|
}
|
|
}
|
|
|