コード例 #1
0
ファイル: lib.c プロジェクト: c10ud/CHDK
void shutdown()
{
    extern void __attribute__((noreturn)) _finish_shutdown(void);
    _finish_shutdown();
}
コード例 #2
0
ファイル: lib.c プロジェクト: BioDesignRealWorld/CHDK
// TODO not really complete, last call from task_Bye
void shutdown()
{
    extern void _finish_shutdown(void);
    _finish_shutdown();
    while(1);
}