From 5a236924444db768813d726ae165d263856d8bff Mon Sep 17 00:00:00 2001 From: Robert Morris Date: Thu, 1 Sep 2011 12:02:49 -0400 Subject: fix usertests to correctly test what happens when you call exec() with arguments that don't fit on a single page. --- entry.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'entry.S') 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 -- cgit v1.2.3