From: Dave A. <ai...@us...> - 2001-06-10 12:46:24
|
Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax In directory usw-pr-cvs1:/tmp/cvs-serv28185 Modified Files: a.out.h Log Message: DA: STACK_TOP should be TASK_SIZE not TASK_SIZE-1 otherwise all the argc/argv stuff completely breaks... so its back to being TASK_SIZE Index: a.out.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/a.out.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- a.out.h 2001/01/17 16:18:52 1.1 +++ a.out.h 2001/06/10 12:46:19 1.2 @@ -2,7 +2,7 @@ #define _VAX_A_OUT_H_ /* from the i386 port */ -#define STACK_TOP 0x7fffffff /*was TASK_SIZE*/ +#define STACK_TOP TASK_SIZE /* 0x7fffffff */ /*was TASK_SIZE and is TASK_SIZE once again .. - D.A. June 2001.. otherwise argc stuff breaks */ /* this is needed to override a conflicting definition in ../linux/a.out.h */ #define page_size PAGE_SIZE |