mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-28 15:34:31 +00:00
refactor(kernel): remove unused TaskingPanic() function
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
parent
7087ce7ec5
commit
c2e31827d8
@ -413,12 +413,6 @@ EXTERNC __no_stack_protector void BeforeShutdown(bool Reboot)
|
|||||||
}
|
}
|
||||||
#pragma GCC diagnostic pop
|
#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 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 CONVERT_TO_BYTE(h, l) ((HEX_DIGIT(h) << 4) | HEX_DIGIT(l))
|
||||||
#define HASH_BYTES(hex) \
|
#define HASH_BYTES(hex) \
|
||||||
|
@ -62,7 +62,6 @@ EXTERNC void _KPrint(const char *Format, va_list Args);
|
|||||||
EXTERNC void KPrint(const char *Format, ...);
|
EXTERNC void KPrint(const char *Format, ...);
|
||||||
EXTERNC void Entry(struct BootInfo *Info);
|
EXTERNC void Entry(struct BootInfo *Info);
|
||||||
EXTERNC void BeforeShutdown(bool Reboot);
|
EXTERNC void BeforeShutdown(bool Reboot);
|
||||||
EXTERNC void TaskingPanic();
|
|
||||||
|
|
||||||
EXTERNC void KernelVFS();
|
EXTERNC void KernelVFS();
|
||||||
EXTERNC void KernelMainThread();
|
EXTERNC void KernelMainThread();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user