This website requires JavaScript.
Explore
Help
Sign In
Bananymous
/
banan-os
Watch
1
Star
1
Fork
You've already forked banan-os
1
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
d266c7f93b
banan-os
/
kernel
/
kernel
/
Panic.cpp
7 lines
82 B
C++
Raw
Normal View
History
Unescape
Escape
Kernel: Panic wont print stacktrace if it has already paniced This prevents stack trace dump to panic and loop
2023-04-16 00:04:49 +03:00
#
include
<kernel/Panic.h>
BAN/Kernel: Rework assertion/panic system BAN/Assert.h does not need any includes meaning it can be included anywhere without problems.
2024-03-04 11:41:54 +02:00
namespace
Kernel
Kernel: Panic wont print stacktrace if it has already paniced This prevents stack trace dump to panic and loop
2023-04-16 00:04:49 +03:00
{
BAN/Kernel: Rework assertion/panic system BAN/Assert.h does not need any includes meaning it can be included anywhere without problems.
2024-03-04 11:41:54 +02:00
volatile
bool
g_paniced
=
false
;
Kernel: Panic wont print stacktrace if it has already paniced This prevents stack trace dump to panic and loop
2023-04-16 00:04:49 +03:00
}