1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
kvisc/vm/pc/die.c
julianb0 e1299836de
vm
2019-08-03 19:01:12 +02:00

27 lines
462 B
C

// 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 <pc/device.h>
#include <pc/console.h>
void die(int code)
{
dying = 1;
if (main_ctx.mp)
free(main_ctx.mp);
console_exit();
//
// Shut down devices
//
if (devfiniall() < 0)
{
logerr("Couldn't deinitialize devices\n");
exit(-100 - code);
}
exit(code);
}