* dcrt0.cc (alloc_stack_hard_way): Make half-hearted attempt to deal with

growing stack under Windows 95.
* Makefile.in: Add install-lib and install-headers.
This commit is contained in:
Christopher Faylor
2001-07-29 02:33:30 +00:00
parent 8e4e3874c4
commit e13ea3343d
3 changed files with 20 additions and 4 deletions

View File

@@ -539,6 +539,8 @@ static NO_COPY STARTUPINFO si;
child_info_fork NO_COPY *child_proc_info = NULL;
static MEMORY_BASIC_INFORMATION sm;
#define CYGWIN_GUARD ((os_being_run == winNT) ? PAGE_GUARD : PAGE_NOACCESS)
// __inline__ void
extern void
alloc_stack_hard_way (child_info_fork *ci, volatile char *b)
@@ -578,7 +580,7 @@ alloc_stack_hard_way (child_info_fork *ci, volatile char *b)
{
m.BaseAddress = (LPVOID)((DWORD)m.BaseAddress - 1);
if (!VirtualAlloc ((LPVOID) m.BaseAddress, 1, MEM_COMMIT,
PAGE_EXECUTE_READWRITE|PAGE_GUARD))
PAGE_EXECUTE_READWRITE|CYGWIN_GUARD))
api_fatal ("fork: couldn't allocate new stack guard page %p, %E",
m.BaseAddress);
}