diff options
author | Christopher Faylor <me@cgf.cx> | 2002-08-16 19:41:39 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-08-16 19:41:39 +0000 |
commit | c7e2187a60c13d1263678e22361648bb5d663e14 (patch) | |
tree | 40c8c06f9f9e0b3c87ef766c2c581b6fd85c6ba4 /winsup/cygwin/cygwin.din | |
parent | 775275aac7f96c2fdccbefde960afd7eda079a7a (diff) | |
download | cygnal-c7e2187a60c13d1263678e22361648bb5d663e14.tar.gz cygnal-c7e2187a60c13d1263678e22361648bb5d663e14.tar.bz2 cygnal-c7e2187a60c13d1263678e22361648bb5d663e14.zip |
* Makefile.in: Add support for new malloc.o and renamed malloc_wrapper.o. Use
-fomit-frame-pointer for malloc.o compilation.
* malloc_wrapper.cc: New file. Rename from malloc.cc. Add support for more
malloc functions. Eliminate export_* calls. Just use straight malloc names.
Remove unused argument from malloc lock functions.
* cygwin.din: Just export straight malloc names. Add malloc_stats,
malloc_trim, malloc_usable_size, mallopt, memalign, valloc.
* dcrt0.cc (__cygwin_user): Eliminate export_* malloc entries.
* fork.cc (fork_parent): Remove unused argument from malloc_lock argument.
* malloc.cc: New file. Doug Lea's malloc v2.7.1.
* cygmalloc.h: New file.
* include/cygwin/version.h: Bump API_MINOR.
* sync.h (muto::acquire): Use appropriate number for regparm attribute.
(muto::reset): Ditto.
(muto::release): Ditto.
Diffstat (limited to 'winsup/cygwin/cygwin.din')
-rw-r--r-- | winsup/cygwin/cygwin.din | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din index 0af8f43ac..2ebfd1ce9 100644 --- a/winsup/cygwin/cygwin.din +++ b/winsup/cygwin/cygwin.din @@ -84,8 +84,8 @@ cabs _cabs = cabs cabsf _cabsf = cabsf -calloc = export_calloc -_calloc = export_calloc +calloc +_calloc = calloc cbrt _cbrt = cbrt cbrtf @@ -296,8 +296,8 @@ fputs _fputs = fputs fread _fread = fread -free = export_free -_free = export_free +free +_free = free freopen _freopen = freopen frexp @@ -535,8 +535,12 @@ lseek64 lstat = cygwin_lstat _lstat = cygwin_lstat lstat64 -malloc = export_malloc -_malloc = export_malloc +malloc +_malloc = malloc +malloc_stats +malloc_trim +malloc_usable_size +mallopt matherr _matherr = matherr mblen @@ -545,6 +549,7 @@ mbstowcs _mbstowcs = mbstowcs mbtowc _mbtowc = mbtowc +memalign memchr _memchr = memchr memcmp @@ -626,8 +631,8 @@ readlink _readlink = readlink readv _readv = readv -realloc = export_realloc -_realloc = export_realloc +realloc +_realloc = realloc posix_regcomp posix_regerror posix_regexec @@ -917,6 +922,7 @@ utimes _utimes = utimes utmpname _utmpname = utmpname +valloc vfiprintf _vfiprintf = vfiprintf vfork |