OSDN Git Service

* include/cygwin/version.h: Bump DLL minor number.
authorcgf <cgf>
Sat, 8 Feb 2003 17:03:34 +0000 (17:03 +0000)
committercgf <cgf>
Sat, 8 Feb 2003 17:03:34 +0000 (17:03 +0000)
* malloc.cc (DEFAULT_MMAP_THRESHOLD): Bump down to 16MB thanks to below
changes.

winsup/cygwin/ChangeLog
winsup/cygwin/include/cygwin/version.h
winsup/cygwin/malloc.cc

index c77e1c7..83873b5 100644 (file)
@@ -1,3 +1,12 @@
+2003-02-08  Christopher Faylor  <cgf@redhat.com>
+
+       * include/cygwin/version.h: Bump DLL minor number.
+
+2003-02-07  Christopher Faylor  <cgf@redhat.com>
+
+       * malloc.cc (DEFAULT_MMAP_THRESHOLD): Bump down to 16MB thanks to below
+       changes.
+
 2003-02-07  Corinna Vinschen  <corinna@vinschen.de>
 
        * mmap.cc (mmap_record::alloc_map): De-inline.  Add offset and length
index 88a69c8..607593f 100644 (file)
@@ -42,7 +42,7 @@ details. */
         changes to the DLL and is mainly informative in nature. */
 
 #define CYGWIN_VERSION_DLL_MAJOR 1003
-#define CYGWIN_VERSION_DLL_MINOR 20
+#define CYGWIN_VERSION_DLL_MINOR 21
 
       /* Major numbers before CYGWIN_VERSION_DLL_EPOCH are
         incompatible. */
index 85965c0..383a590 100644 (file)
@@ -1455,7 +1455,7 @@ void     public_mSTATs();
 
 #define M_MMAP_THRESHOLD      -3
 
-#define DEFAULT_MMAP_THRESHOLD (128 * 1024 * 1024)
+#define DEFAULT_MMAP_THRESHOLD (16 * 1024 * 1024)
 
 #ifndef DEFAULT_MMAP_THRESHOLD
 #define DEFAULT_MMAP_THRESHOLD (256 * 1024)