mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[NTOSKRNL] Add 'DECLSPEC_NORETURN' to a few 'KeBugCheck*()' (#2896)
This commit is contained in:
parent
d4acd8cc91
commit
3051eb0e48
4 changed files with 6 additions and 1 deletions
|
@ -102,6 +102,7 @@ DbgPrint (
|
|||
return 0;
|
||||
}
|
||||
|
||||
// FIXME: DECLSPEC_NORETURN
|
||||
VOID
|
||||
NTAPI
|
||||
KeBugCheckEx(
|
||||
|
|
|
@ -706,6 +706,7 @@ KiDisplayBlueScreen(IN ULONG MessageId,
|
|||
}
|
||||
}
|
||||
|
||||
DECLSPEC_NORETURN
|
||||
VOID
|
||||
NTAPI
|
||||
KeBugCheckWithTf(IN ULONG BugCheckCode,
|
||||
|
@ -1403,6 +1404,7 @@ KeDeregisterNmiCallback(IN PVOID Handle)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
DECLSPEC_NORETURN
|
||||
VOID
|
||||
NTAPI
|
||||
KeBugCheckEx(IN ULONG BugCheckCode,
|
||||
|
@ -1423,6 +1425,7 @@ KeBugCheckEx(IN ULONG BugCheckCode,
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
DECLSPEC_NORETURN
|
||||
VOID
|
||||
NTAPI
|
||||
KeBugCheck(ULONG BugCheckCode)
|
||||
|
|
|
@ -81,6 +81,7 @@
|
|||
IN PCUNICODE_STRING String2,
|
||||
IN BOOLEAN CaseInSensitive);
|
||||
|
||||
// FIXME: DECLSPEC_NORETURN
|
||||
VOID
|
||||
NTAPI
|
||||
KeBugCheckEx(
|
||||
|
|
|
@ -155,7 +155,7 @@ RtlAssert(IN PVOID FailedAssertion,
|
|||
//DbgBreakPoint();
|
||||
}
|
||||
|
||||
// DECLSPEC_NORETURN
|
||||
// FIXME: DECLSPEC_NORETURN
|
||||
VOID
|
||||
NTAPI
|
||||
KeBugCheckEx(
|
||||
|
|
Loading…
Reference in a new issue