summaryrefslogtreecommitdiff
path: root/entry.S
diff options
context:
space:
mode:
authorRobert Morris <[email protected]>2011-09-01 12:02:49 -0400
committerRobert Morris <[email protected]>2011-09-01 12:02:49 -0400
commit5a236924444db768813d726ae165d263856d8bff (patch)
tree7f6ba51bec015a7c467f8489d15b2133dfda37bc /entry.S
parent15997d58497f4c716c227787acf9591439e5fe9c (diff)
downloadxv6-labs-5a236924444db768813d726ae165d263856d8bff.tar.gz
xv6-labs-5a236924444db768813d726ae165d263856d8bff.tar.bz2
xv6-labs-5a236924444db768813d726ae165d263856d8bff.zip
fix usertests to correctly test what happens when you call
exec() with arguments that don't fit on a single page.
Diffstat (limited to 'entry.S')
-rw-r--r--entry.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/entry.S b/entry.S
index f814aeb..4fd85c6 100644
--- a/entry.S
+++ b/entry.S
@@ -54,10 +54,10 @@ entry:
# Set up the stack pointer.
movl $(stack + STACK), %esp
- # Call main(), which switches to executing at
+ # Jump to main(), and switch to executing at
# high addresses. The indirect call is needed because
# the assembler produces a PC-relative instruction
- # for a direct call.
+ # for a direct jump.
mov $main, %eax
jmp *%eax