mirror of https://gitlab.com/nakst/essence
remove test panic
This commit is contained in:
parent
65d0edfbff
commit
ca856b74cf
|
@ -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.
|
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
|
## Features
|
||||||
|
|
||||||
Kernel
|
Kernel
|
||||||
|
@ -55,7 +59,3 @@ Desktop
|
||||||
* Software vector renderer with complex animation support.
|
* Software vector renderer with complex animation support.
|
||||||
* Tabbed windows.
|
* Tabbed windows.
|
||||||
* Multi-lingual text rendering and layout with FreeType and Harfbuzz.
|
* 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.
|
|
||||||
|
|
|
@ -25,7 +25,6 @@ void KernelMain(uintptr_t) {
|
||||||
desktopProcess = ProcessSpawn(PROCESS_DESKTOP); // Spawn the desktop process.
|
desktopProcess = ProcessSpawn(PROCESS_DESKTOP); // Spawn the desktop process.
|
||||||
DriversInitialise(); // Load the root device.
|
DriversInitialise(); // Load the root device.
|
||||||
ProcessStart(desktopProcess, EsLiteral(K_DESKTOP_EXECUTABLE)); // Start the desktop process.
|
ProcessStart(desktopProcess, EsLiteral(K_DESKTOP_EXECUTABLE)); // Start the desktop process.
|
||||||
KernelPanic("Test\n");
|
|
||||||
KEventWait(&shutdownEvent, ES_WAIT_NO_TIMEOUT); // Wait for a shutdown request.
|
KEventWait(&shutdownEvent, ES_WAIT_NO_TIMEOUT); // Wait for a shutdown request.
|
||||||
ProcessTerminateAll(); // Terminate all user processes.
|
ProcessTerminateAll(); // Terminate all user processes.
|
||||||
FSShutdown(); // Flush file cache and unmount filesystems.
|
FSShutdown(); // Flush file cache and unmount filesystems.
|
||||||
|
|
Loading…
Reference in New Issue