From 21f3631d43a66fac951b80f45e11713c6d7fd7bb Mon Sep 17 00:00:00 2001 From: Emanuele Aliberti Date: Fri, 18 Oct 2002 21:56:39 +0000 Subject: [PATCH] PAGESIZE to PAGE_SIZE. svn path=/trunk/; revision=3637 --- posix/lib/psxdll/misc/spawn.c | 8 ++++---- posix/lib/psxdll/pthread/create.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/posix/lib/psxdll/misc/spawn.c b/posix/lib/psxdll/misc/spawn.c index 64e56b25bf2..9b48be55e63 100644 --- a/posix/lib/psxdll/misc/spawn.c +++ b/posix/lib/psxdll/misc/spawn.c @@ -1,4 +1,4 @@ -/* $Id: spawn.c,v 1.5 2002/03/21 22:43:27 hyperion Exp $ +/* $Id: spawn.c,v 1.6 2002/10/18 21:56:39 ea Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory @@ -478,7 +478,7 @@ undoPData: /* 5.1: set up the stack */ itInitialTeb.StackAllocate = NULL; nVirtualSize = 0x100000; - nCommitSize = 0x100000 - PAGESIZE; + nCommitSize = 0x100000 - PAGE_SIZE; /* 5.1.1: reserve the stack */ nErrCode = NtAllocateVirtualMemory @@ -505,7 +505,7 @@ undoPData: (PVOID)((ULONG)itInitialTeb.StackBase - nCommitSize); /* 5.1.2: commit the stack */ - nVirtualSize = nCommitSize + PAGESIZE; + nVirtualSize = nCommitSize + PAGE_SIZE; pCommitBottom = (PVOID)((ULONG)itInitialTeb.StackBase - nVirtualSize); @@ -527,7 +527,7 @@ undoPData: } /* 5.1.3: set up the guard page */ - nVirtualSize = PAGESIZE; + nVirtualSize = PAGE_SIZE; nErrCode = NtProtectVirtualMemory ( diff --git a/posix/lib/psxdll/pthread/create.c b/posix/lib/psxdll/pthread/create.c index 192173e017d..9670d36ed3d 100644 --- a/posix/lib/psxdll/pthread/create.c +++ b/posix/lib/psxdll/pthread/create.c @@ -1,4 +1,4 @@ -/* $Id: create.c,v 1.2 2002/02/20 09:17:57 hyperion Exp $ +/* $Id: create.c,v 1.3 2002/10/18 21:56:39 ea Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory @@ -63,10 +63,10 @@ int pthread_create(pthread_t *thread, const pthread_attr_t *attr, itInitialTeb.StackReserve = 0x100000; /* stack commit size */ - itInitialTeb.StackCommit = itInitialTeb.StackReserve - PAGESIZE; + itInitialTeb.StackCommit = itInitialTeb.StackReserve - PAGE_SIZE; /* guard page */ - itInitialTeb.StackCommit += PAGESIZE; + itInitialTeb.StackCommit += PAGE_SIZE; /* reserve stack */ itInitialTeb.StackAllocate = NULL; @@ -118,7 +118,7 @@ int pthread_create(pthread_t *thread, const pthread_attr_t *attr, ( NtCurrentProcess(), itInitialTeb.StackLimit, - PAGESIZE, + PAGE_SIZE, PAGE_GUARD | PAGE_READWRITE, &nOldPageProtection ); -- 2.17.1