KeBugCheckEx make BlueScreen!!

Hi~

I make some switch, case phrase.

When I call KeBugCheckEx, Blue screen shows up!

How can I avoid it?

KeBugCheckEx(FAT_FILE_SYSTEM, BugCheckFileId | LINE, A, B, C );


You are currently subscribed to ntfsd as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntfsd-$subst(‘Recip.MemberIDChar’)@lists.osr.com

That is exactly what KeBugCheckEx does.

If you just want to print something out and/or make the system stop in
the debugger:

DbgPrint(“This is a breakpoint at line %d\n”, LINE);
DbgPrint(“Enter ‘g’ to continue\n”);
DbgBreakPoint();

-----Original Message-----
From: xxxxx@esecurity.co.kr [mailto:xxxxx@esecurity.co.kr]
Sent: Wednesday, August 01, 2001 3:22 PM
To: File Systems Developers
Subject: [ntfsd] KeBugCheckEx make BlueScreen!!

Hi~

I make some switch, case phrase.

When I call KeBugCheckEx, Blue screen shows up!

How can I avoid it?

KeBugCheckEx(FAT_FILE_SYSTEM, BugCheckFileId | LINE, A, B, C );


You are currently subscribed to ntfsd as: xxxxx@windows.microsoft.com To
unsubscribe send a blank email to leave-ntfsd-$subst(‘Recip.MemberIDChar’)@lists.osr.com


You are currently subscribed to ntfsd as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntfsd-$subst(‘Recip.MemberIDChar’)@lists.osr.com

> I make some switch, case phrase.

When I call KeBugCheckEx, Blue screen shows up!

This is exactly a function to halt the OS with the blue screen. It is
designed to be such.

Max


You are currently subscribed to ntfsd as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntfsd-$subst(‘Recip.MemberIDChar’)@lists.osr.com