What does error 0x80004005 mean?

Hello, My first post to this mailing lists. This may be basic question…

  • What does error 0x80004005 mean?
  • How do I get the sense of error code like this?
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Windows Debugger: 5.1.2250.3
    Failure when opening dump file ‘…\user.dmp’, error 0x80004005
    It may be corrupt or in a format not understood by the debugger
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Thank you, Kimi


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

This is an internal error code, E_FAIL. The dump file may have been
corrupted.
Do a dumpchk on the user.dmp.

Suifun

xxxxx@citrix
.co.jp To: “Kernel Debugging Interest List”
Sent by: cc:
xxxxx@lis Subject: [windbg] What does error 0x80004005 mean?
ts.osr.com

07/05/2001 07:12 PM
Please respond to
“Kernel Debugging
Interest List”

Hello, My first post to this mailing lists. This may be basic question…

- What does error 0x80004005 mean?
- How do I get the sense of error code like this?
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Windows Debugger: 5.1.2250.3
Failure when opening dump file ‘…\user.dmp’, error 0x80004005
It may be corrupt or in a format not understood by the debugger
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Thank you, Kimi


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


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

xxxxx@citrix.co.jp wrote:

Hello, My first post to this mailing lists. This may be basic question…

  • What does error 0x80004005 mean?
  • How do I get the sense of error code like this?
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Windows Debugger: 5.1.2250.3
    Failure when opening dump file ‘…\user.dmp’, error 0x80004005
    It may be corrupt or in a format not understood by the debugger
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Thank you, Kimi


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

Not sure but I know 80000005 is STATUS_BUFFER_OVERRUN and I see
800040005 in the user mode app when this happens. Is is possible you
pass in a invalid or buffer which is too small ?

Jos

PS: Check out NTSTATUS.H and maybe some windows header which translates
these errror code to WIN32 codes


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

Using a debugger with version 5.1.2250.3 is likely to generate a tremendous
amount of frustration for anyone trying to use it - even if the dump is
VALID.

Before doing anything else, you should really upgrade to the latest and
greatest debugger (http://www.microsoft.com/ddk/debugging.)

As for the error code, 0x80004005 is a warning, not an error code (error
codes start with 0xC0000000, warnings with 0x80000000, informational with
0x40000000, and success with 0x00000000.) You can see the general
layout/descriptive information in the header file ntstatus.h which is
included in the Windows DDK (http://www.microsoft.com/ddk for download
information.) This specific error code is NOT listed in that header file,
however. It is in dxmini.h which is (according to the header file) related
to the “direct draw” miniport support and is defined as DXERR_GENERIC.
Doesn’t seem to be a reasonable error, so perhaps someone ELSE is using this
code as well.

Regards,

Tony Mason
Consulting Partner
OSR Open Systems Resources, Inc.
http://www.osr.com

-----Original Message-----
From: Suifun Law [mailto:suifun@us.ibm.com]
Sent: Friday, July 06, 2001 12:28 PM
To: Kernel Debugging Interest List
Subject: [windbg] Re: What does error 0x80004005 mean?

This is an internal error code, E_FAIL. The dump file may have been
corrupted.
Do a dumpchk on the user.dmp.

Suifun

xxxxx@citrix

.co.jp To: “Kernel Debugging
Interest List”
Sent by: cc:

xxxxx@lis Subject: [windbg] What
does error 0x80004005 mean?
ts.osr.com

07/05/2001 07:12 PM

Please respond to

“Kernel Debugging

Interest List”

Hello, My first post to this mailing lists. This may be basic question…

- What does error 0x80004005 mean?
- How do I get the sense of error code like this?
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Windows Debugger: 5.1.2250.3
Failure when opening dump file ‘…\user.dmp’, error 0x80004005
It may be corrupt or in a format not understood by the debugger
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Thank you, Kimi


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


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


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