remove test panic

This commit is contained in:
nakst 2021-12-29 10:08:32 +00:00
parent 65d0edfbff
commit ca856b74cf
2 changed files with 4 additions and 5 deletions

View File

@ -14,6 +14,10 @@ Alternatively, visit the forums (not very active): https://essence.handmade.netw
To support development, you can donate to my Patreon: https://www.patreon.com/nakst.
## Building
See `help/Building.md` for a description of how to build and test the system.
## Features
Kernel
@ -55,7 +59,3 @@ Desktop
* Software vector renderer with complex animation support.
* Tabbed windows.
* Multi-lingual text rendering and layout with FreeType and Harfbuzz.
## Building
See `help/Building.md` for a description of how to build and test the system.

View File

@ -25,7 +25,6 @@ void KernelMain(uintptr_t) {
desktopProcess = ProcessSpawn(PROCESS_DESKTOP); // Spawn the desktop process.
DriversInitialise(); // Load the root device.
ProcessStart(desktopProcess, EsLiteral(K_DESKTOP_EXECUTABLE)); // Start the desktop process.
KernelPanic("Test\n");
KEventWait(&shutdownEvent, ES_WAIT_NO_TIMEOUT); // Wait for a shutdown request.
ProcessTerminateAll(); // Terminate all user processes.
FSShutdown(); // Flush file cache and unmount filesystems.