summaryrefslogtreecommitdiff
path: root/src/w32heap.c
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1997-01-20 00:38:22 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1997-01-20 00:38:22 +0000
commitbb17ccf8f6b719fa89630ed727b57e511b130e93 (patch)
tree7d15e9cf0718db5ad07ad1858046c7cb5186cf71 /src/w32heap.c
parentfcecbac813a64a7537ad6c82375450bfa781723e (diff)
downloademacs-bb17ccf8f6b719fa89630ed727b57e511b130e93.tar.gz
Change all uses of win95, winnt, and win32
into Windows 95, Windows NT, and W32, respectively. Expand "win" substring in variables referring to Microsoft Windows constructs into "windows". Canonicalize header comments to use same terminology.
Diffstat (limited to 'src/w32heap.c')
-rw-r--r--src/w32heap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/w32heap.c b/src/w32heap.c
index a16872e2d11..2a92d059d90 100644
--- a/src/w32heap.c
+++ b/src/w32heap.c
@@ -1,4 +1,4 @@
-/* Heap management routines for GNU Emacs on Windows NT.
+/* Heap management routines for GNU Emacs on the Microsoft W32 API.
Copyright (C) 1994 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -107,12 +107,12 @@ allocate_heap (void)
the initial default process heap size and the executable image base
address. The link settings and the malloc heap base below must all
correspond; the relationship between these values depends on how NT
- and Win95 arrange the virtual address space for a process (and on
+ and Windows 95 arrange the virtual address space for a process (and on
the size of the code and data segments in temacs.exe).
The most important thing is to make base address for the executable
image high enough to leave enough room between it and the 4MB floor
- of the process address space on Win95 for the primary thread stack,
+ of the process address space on Windows 95 for the primary thread stack,
the process default heap, and other assorted odds and ends
(eg. environment strings, private system dll memory etc) that are
allocated before temacs has a chance to grab its malloc arena. The
@@ -132,7 +132,7 @@ allocate_heap (void)
we will have plenty of room for expansion.
Thus we would like to set the malloc heap base to 20MB. However,
- Win95 refuses to allocate the heap starting at this address, so we
+ Windows 95 refuses to allocate the heap starting at this address, so we
set the base to 27MB to make it happy. Since Emacs now leaves
28 bits available for pointers, this lets us use the remainder of
the region below the 256MB line for our malloc arena - 229MB is