Kernel: Panic wont print stacktrace if it has already paniced

This prevents stack trace dump to panic and loop
This commit is contained in:
2023-04-18 10:18:15 +03:00
parent 93abee9c7c
commit aba82564f5
3 changed files with 21 additions and 11 deletions
+6
View File
@@ -0,0 +1,6 @@
#include <kernel/Panic.h>
namespace Kernel::detail
{
bool g_paniced = false;
}