summaryrefslogtreecommitdiff
path: root/proc.h
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2018-10-03 18:13:51 -0400
committerFrans Kaashoek <[email protected]>2018-10-03 18:13:51 -0400
commiteb72653bd7a1dec89a79af3c377c3abf8df2064a (patch)
tree007d7be05f735de83c47d8ba9cfe66d563c63914 /proc.h
parent23a58370a4fa441fd0ee152a3e1e7619e5d8bd6b (diff)
downloadxv6-labs-eb72653bd7a1dec89a79af3c377c3abf8df2064a.tar.gz
xv6-labs-eb72653bd7a1dec89a79af3c377c3abf8df2064a.tar.bz2
xv6-labs-eb72653bd7a1dec89a79af3c377c3abf8df2064a.zip
use x86-64 names
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proc.h b/proc.h
index 5ab2de5..e421e44 100644
--- a/proc.h
+++ b/proc.h
@@ -33,8 +33,8 @@ struct context {
uint64 r12;
uint64 r11;
uint64 rbx;
- uint64 ebp; //rbp
- uint64 eip; //rip;
+ uint64 rbp;
+ uint64 rip;
};
enum procstate { UNUSED, EMBRYO, SLEEPING, RUNNABLE, RUNNING, ZOMBIE };