2
|
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
2 |
"http://www.w3.org/TR/html4/loose.dtd">
|
|
3 |
<html><head>
|
|
4 |
<title>Finding the type of fault in Debugging information</title>
|
|
5 |
<link href="sysdoc-eclipse.css" type="text/css" rel="stylesheet" media="screen">
|
|
6 |
<link href="sysdoc-eclipse.css" type="text/css" rel="stylesheet" media="print">
|
|
7 |
<link href="../../book.css" type="text/css" rel="stylesheet" >
|
|
8 |
<div class="Head1">
|
|
9 |
|
|
10 |
<h2>Finding the Type of Fault</h2>
|
|
11 |
</div><div>
|
|
12 |
<p>The type of fault is the first piece of information that you need.
|
|
13 |
There are two possibilities:</p>
|
|
14 |
<ul>
|
|
15 |
<li>
|
|
16 |
<p><a href="CrashDebuggerFindingFault.guide02.html" title="Finding the type of fault / Unhandled exceptions">an unhandled exception has occurred</a></p>
|
|
17 |
</li>
|
|
18 |
<li>
|
|
19 |
<p><a href="CrashDebuggerFindingFault.guide03.html" title="Finding the type of fault / Panics">a panic has occurred</a></p>
|
|
20 |
</li>
|
|
21 |
</ul>
|
|
22 |
<p>To start, use the
|
|
23 |
<a href="CrashDebugger_cmd_f.guide.html" title="The debug monitor and command syntax / f - display kernel fault information">f</a> command. You
|
|
24 |
will see something like this: </p>
|
|
25 |
<p class="listing">Fault Category: Exception Fault Reason: 10000000<br>
|
|
26 |
ExcId 00000001 CodeAddr f800415c DataAddr 00000000 Extra 00000005<br>Exc 1 Cpsr=60000013 FAR=00000000 FSR=00000005<br>
|
|
27 |
R0=64007328 R1=00000000 R2=00000000 R3=00000001<br>
|
|
28 |
R4=64007328 R5=640074c0 R6=00000000 R7=f8047ba4<br>
|
|
29 |
R8=64006f80 R9=64006fec R10=00000013 R11=64006ec4<br>
|
|
30 |
R12=00000001 R13=000029b4 R14=0000016c R15=f800415c<br>R13Svc=64006ea8 R14Svc=f8002b2c SpsrSvc=600000ff</p>
|
|
31 |
<p>The <em>Fault Category</em> field shows the type of fault, in
|
|
32 |
this case an exception.</p>
|
|
33 |
|
|
34 |
</div><div class="Head2"></div><div></div>
|
|
35 |
<div id="footer">Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. <br>License: <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a></div>
|
|
36 |
</body>
|
|
37 |
</html>
|
|
38 |
|