hi all,
Does anybody know the bugcheck code 0x0a.What does it mean??
Where can i get a list of all exception codes.?
Thanks
Ajitabh
hi all,
Does anybody know the bugcheck code 0x0a.What does it mean??
Where can i get a list of all exception codes.?
Thanks
Ajitabh
http://support.microsoft.com/support/kb/articles/Q103/0/59.asp
>>>-----Original Message-----
>>>From: Ajitabh Prakash [mailto:xxxxx@future.futsoft.com]
>>>Sent: Monday, July 17, 2000 3:12 PM
>>>To: NT Developers Interest List
>>>Subject: [ntdev] BugCheck Code 0x0A
>>>
>>>
>>>hi all,
>>> Does anybody know the bugcheck code 0x0a.What does it mean??
>>> Where can i get a list of all exception codes.?
>>>
>>>Thanks
>>>Ajitabh
>>>
>>>
>>>—
>>>You are currently subscribed to ntdev as:
>>>xxxxx@hht.satyam.com
>>>To unsubscribe send a blank email to $subst(‘Email.Unsub’)
>>>
Hi,
Its #define is IRQL_NOT_LESS_OR_EQUAL. You can search for this in the MSDN
Library to get a full desciption.
Regards,
Gavin Button
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Ajitabh Prakash
Sent: 17 July 2000 10:42
To: NT Developers Interest List
Subject: [ntdev] BugCheck Code 0x0Ahi all,
Does anybody know the bugcheck code 0x0a.What does it mean??
Where can i get a list of all exception codes.?Thanks
Ajitabh
You are currently subscribed to ntdev as:
xxxxx@panasonic-pmdc.co.uk
To unsubscribe send a blank email to $subst(‘Email.Unsub’)
It happens when you use invalid pointers.
A special case occurs when you are using a valid pointer
but it points to pageable memory and you are using the
pointer at a high IRQL.
-----Original Message-----
From: Ajitabh Prakash
Sent: lunes 17 de julio de 2000 11:42
To: NT Developers Interest List
Subject: [ntdev] BugCheck Code 0x0Ahi all,
Does anybody know the bugcheck code 0x0a.What does it mean??
Where can i get a list of all exception codes.?Thanks
Ajitabh
You are currently subscribed to ntdev as: xxxxx@pandasoftware.es
To unsubscribe send a blank email to $subst(‘Email.Unsub’)
> Does anybody know the bugcheck code 0x0a.What does it mean??
IRQL_NOT_LESS_OR_EQUAL
Doing something on >= DISPATCH_LEVEL which requires < DISPATCH_LEVEL.
Usually - touching something pageable from >= DISPATCH_LEVEL.
Where can i get a list of all exception codes.?
bugcodes.h in the DDK.
Max