// The OS/K Team licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #include #include void die(int code) { dying = 1; if (main_ctx.mp) free(main_ctx.mp); console_exit(&main_ctx); // // Shut down devices // if (devfiniall(&main_ctx) < 0) { logerr("Couldn't deinitialize devices\n"); exit(-100 - code); } exit(code); }