diff options
author | Christopher Faylor <me@cgf.cx> | 2002-10-19 00:35:20 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-10-19 00:35:20 +0000 |
commit | 824166e620dcffbd338795d6944281bc022e9ecf (patch) | |
tree | f7d275db5c85392fdd8a503bce84c9b1749ba153 /winsup/cygwin/heap.cc | |
parent | 60bc7b5977b45844adb1223096066d635d6da0a2 (diff) | |
download | cygnal-824166e620dcffbd338795d6944281bc022e9ecf.tar.gz cygnal-824166e620dcffbd338795d6944281bc022e9ecf.tar.bz2 cygnal-824166e620dcffbd338795d6944281bc022e9ecf.zip |
* cygthread.cc: Bump number of cygthreads up to accommodate applications which
use ttys.
Diffstat (limited to 'winsup/cygwin/heap.cc')
-rw-r--r-- | winsup/cygwin/heap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/heap.cc b/winsup/cygwin/heap.cc index 139b1d5a0..1292048b7 100644 --- a/winsup/cygwin/heap.cc +++ b/winsup/cygwin/heap.cc @@ -60,7 +60,7 @@ heap_init () cygheap->heapbase, cygwin_shared->heap_chunk_size (), myself->pid); if (p != cygheap->heapbase) api_fatal ("heap allocated but not at %p", cygheap->heapbase); - if (! VirtualAlloc (cygheap->heapbase, allocsize, MEM_COMMIT, PAGE_READWRITE)) + if (!VirtualAlloc (cygheap->heapbase, allocsize, MEM_COMMIT, PAGE_READWRITE)) api_fatal ("MEM_COMMIT failed, %E"); } else |