From 0ede2152cdf987d53790a0d917a30a679c3dfc23 Mon Sep 17 00:00:00 2001 From: cgf Date: Sat, 18 Jan 2003 03:26:05 +0000 Subject: [PATCH] * cygheap.cc: Change most 'int's to 'unsigned's. (_cmalloc): Only check for size of malloced region when calculating budget. Add overhead when performing the sbrk. Previous change broke _crealloc. --- winsup/cygwin/ChangeLog | 7 +++++++ winsup/cygwin/cygheap.cc | 20 +++++++++----------- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 19c0779cae..2d70f3592b 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,12 @@ 2003-01-17 Christopher Faylor + * cygheap.cc: Change most 'int's to 'unsigned's. + (_cmalloc): Only check for size of malloced region when calculating + budget. Add overhead when performing the sbrk. Previous change broke + _crealloc. + +2003-01-17 Christopher Faylor + * dcrt0.cc (initialize_env): Use colon for CYGWIN_DEBUG separator. * grp.cc: Change most statics to NO_COPY throughout. * passwd.cc: Ditto. diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc index e224ca8259..7fdb87a3e1 100644 --- a/winsup/cygwin/cygheap.cc +++ b/winsup/cygwin/cygheap.cc @@ -38,7 +38,7 @@ struct cygheap_entry #define NBUCKETS (sizeof (cygheap->buckets) / sizeof (cygheap->buckets[0])) #define N0 ((_cmalloc_entry *) NULL) -#define to_cmalloc(s) ((_cmalloc_entry *) (((char *) (s)) - (int) (N0->data))) +#define to_cmalloc(s) ((_cmalloc_entry *) (((char *) (s)) - (unsigned) (N0->data))) #define CFMAP_OPTIONS (SEC_RESERVE | PAGE_READWRITE) #define MVMAP_OPTIONS (FILE_MAP_WRITE) @@ -208,18 +208,17 @@ cygheap_init () /* Copyright (C) 1997, 2000 DJ Delorie */ -static void *_cmalloc (int size) __attribute ((regparm(1))); -static void *__stdcall _crealloc (void *ptr, int size) __attribute ((regparm(2))); +static void *_cmalloc (unsigned size) __attribute ((regparm(1))); +static void *__stdcall _crealloc (void *ptr, unsigned size) __attribute ((regparm(2))); static void *__stdcall -_cmalloc (int size) +_cmalloc (unsigned size) { _cmalloc_entry *rvc; unsigned b, sz; /* Calculate "bit bucket" and size as a power of two. */ - for (b = 3, sz = 8; sz && sz < (size + sizeof (_cmalloc_entry)); - b++, sz <<= 1) + for (b = 3, sz = 8; sz && sz < size; b++, sz <<= 1) continue; cygheap_protect->acquire (); @@ -231,7 +230,7 @@ _cmalloc (int size) } else { - rvc = (_cmalloc_entry *) _csbrk (sz); + rvc = (_cmalloc_entry *) _csbrk (sz + sizeof (_cmalloc_entry)); if (!rvc) { cygheap_protect->release (); @@ -257,16 +256,15 @@ _cfree (void *ptr) cygheap_protect->release (); } -static void *__stdcall _crealloc (void *ptr, int size) __attribute__((regparm(2))); static void *__stdcall -_crealloc (void *ptr, int size) +_crealloc (void *ptr, unsigned size) { void *newptr; if (ptr == NULL) newptr = _cmalloc (size); else { - int oldsize = 1 << to_cmalloc (ptr)->b; + unsigned oldsize = 1 << to_cmalloc (ptr)->b; if (size <= oldsize) return ptr; newptr = _cmalloc (size); @@ -284,7 +282,7 @@ _crealloc (void *ptr, int size) #define tocygheap(s) ((cygheap_entry *) (((char *) (s)) - (int) (N->data))) inline static void * -creturn (cygheap_types x, cygheap_entry * c, int len) +creturn (cygheap_types x, cygheap_entry * c, unsigned len) { if (!c) { -- 2.11.0