refactor(kernel): remove unused TaskingPanic() function

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-03-21 02:19:01 +00:00
parent 7087ce7ec5
commit c2e31827d8
No known key found for this signature in database
GPG Key ID: 2EE20AF089811A5A
2 changed files with 0 additions and 7 deletions

View File

@ -413,12 +413,6 @@ EXTERNC __no_stack_protector void BeforeShutdown(bool Reboot)
}
#pragma GCC diagnostic pop
EXTERNC void TaskingPanic()
{
if (TaskManager)
TaskManager->Panic();
}
#define HEX_DIGIT(c) (((c) >= '0' && (c) <= '9') ? ((c) - '0') : ((c) - 'a' + 10))
#define CONVERT_TO_BYTE(h, l) ((HEX_DIGIT(h) << 4) | HEX_DIGIT(l))
#define HASH_BYTES(hex) \

View File

@ -62,7 +62,6 @@ EXTERNC void _KPrint(const char *Format, va_list Args);
EXTERNC void KPrint(const char *Format, ...);
EXTERNC void Entry(struct BootInfo *Info);
EXTERNC void BeforeShutdown(bool Reboot);
EXTERNC void TaskingPanic();
EXTERNC void KernelVFS();
EXTERNC void KernelMainThread();