Click here to Skip to main content
15,881,559 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I tried to get the dump file of myapp by using the procdump command as following:

C++
c:\dump>procdump.exe -e -h -ma -o -w  myapp.exe c:\dump

ProcDump v6.00 - Writes process dump files
Copyright (C) 2009-2013 Mark Russinovich
Sysinternals - www.sysinternals.com
With contributions from Andrew Richards

Waiting for process named myapp.exe...

Process:               myapp.exe (1620)
CPU threshold:         n/a
Performance counter:   n/a
Commit threshold:      n/a
Threshold seconds:     n/a
Number of dumps:       1
Hung window check:     Enabled
Exception monitor:     Unhandled
Exception filter:      *
Terminate monitor:     Disabled
Dump file:             c:\dump\myapp_YYMMDD_HHMMSS.dmp


Press Ctrl-C to end monitoring without terminating the process.

[12:23:13] Exception: E0434F4D.COM
[12:23:27] Exception: E0000001
[12:23:38] Exception: 80040155
[12:25:21] Exception: E0434F4D.COM
The process terminated


But I do not know what is the meaning of Exception:E0434F4D.COM, E0000001, 80040155 from procdump.exe.
Could you please help me?
Posted

E0434F4D are CLR exceptions. With unmanaged code you will only see this number. See this MSDN blog: http://blogs.msdn.com/b/alejacma/archive/2009/08/24/managed-debugging-with-windbg-breaking-on-an-exception-part-1.aspx[^]

I can't help regarding E0000001.

80040155 is a HRESULT error code.

It is defined in winerror.h:
//
// MessageId: REGDB_E_IIDNOTREG
//
// MessageText:
//
//  Interface not registered
//
#define REGDB_E_IIDNOTREG                _HRESULT_TYPEDEF_(0x80040155L)
 
Share this answer
 
Comments
DangBao 31-Mar-15 5:31am    
Thanks Jochen Arndt
Sergey Alexandrovich Kryukov 1-Apr-15 12:17pm    
5ed.

Jochen,

Congratulations with April 1st! :-)

I would like to use the occasion to invite your (and everyone else, of course) to see my new 1 of April publication and have some fun:
Some Programming Approaches to "Neuro-Linguistic Programming".
Participation in this game in Comments and Discussions is especially encouraged.

This time, I put more effort in the work. The fun and mocking is supposed to be combined with quite serious hints, in a satical form, on how we can conduct our discussions, give and use advice, add references and use them, use critical thinking, learn and use our own brains.

Thank you.
—SA
You need to contact the person (Mark Russinovich at www.sysinternals.com[^]) who wrote this program.
 
Share this answer
 
Comments
DangBao 31-Mar-15 5:32am    
Thanks Richard MacCutchan

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900