Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
movitz
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
movitz
movitz
Commits
9096c784
Commit
9096c784
authored
Aug 30, 2004
by
Frode Vatvedt Fjeld
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed format of dit-frames, reflect this in the procfs debugger too.
parent
ea72564c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
procfs-image.lisp
procfs-image.lisp
+4
-4
No files found.
procfs-image.lisp
View file @
9096c784
...
...
@@ -10,7 +10,7 @@
;;;; Author: Frode Vatvedt Fjeld <frodef@acm.org>
;;;; Created at: Fri Aug 24 11:39:37 2001
;;;;
;;;; $Id: procfs-image.lisp,v 1.1
6 2004/08/16 08:25:2
8 ffjeld Exp $
;;;; $Id: procfs-image.lisp,v 1.1
7 2004/08/23 13:46:1
8 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
...
...
@@ -167,8 +167,7 @@
(
defun
interrupt-frame-index
(
name
)
(
-
5
(
position
name
'
(
nil
:eflags
:eip
:error-code
:exception
:ebp
nil
:ecx
:eax
:edx
:ebx
:esi
:edi
))))
(
symbol-value
'muerte::+dit-frame-map+
))))
(
defun
debug-get-object
(
word
spartan
)
(
if
spartan
...
...
@@ -202,7 +201,8 @@
(
edi
(
get-word
(
+
(
*
4
(
interrupt-frame-index
:edi
))
stack-frame
)))
(
eip
(
get-word
(
+
(
*
4
(
interrupt-frame-index
:eip
))
stack-frame
)))
(
esi
(
get-word
(
+
(
*
4
(
interrupt-frame-index
:esi
))
stack-frame
)))
(
exception
(
get-word
(
+
(
*
4
(
interrupt-frame-index
:exception
))
stack-frame
))))
(
exception
(
get-word
(
+
(
*
4
(
interrupt-frame-index
:exception-vector
))
stack-frame
))))
(
format
t
"#x~X {EAX: #x~X, ECX: #x~X, EDX: #x~X, EDI: #x~X, ESI: #x~X, EIP: #x~X, exception ~D}"
stack-frame
eax
ecx
edx
edi
esi
eip
exception
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment