diff options
author | Robert Morris <[email protected]> | 2011-09-01 12:02:49 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2011-09-01 12:02:49 -0400 |
commit | 5a236924444db768813d726ae165d263856d8bff (patch) | |
tree | 7f6ba51bec015a7c467f8489d15b2133dfda37bc /entry.S | |
parent | 15997d58497f4c716c227787acf9591439e5fe9c (diff) | |
download | xv6-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.S | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |