Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2013-07-31 18:43:05 +0400
committerChristopher Faylor <me@cgf.cx>2013-07-31 18:43:05 +0400
commit24557e9caaf23db2a642c7637f3c0df7c8bc9106 (patch)
treeb2e3ba2820544ecbaa25e4e73018fa4abeb43cee
parentc39e8632d10a0bf45b927741c37bd663f8863112 (diff)
* cygheap.cc (cmalloc): Use size_t for size field.
(cmalloc_abort): Ditto. (crealloc): Ditto. (crealloc_abort): Ditto. (ccalloc): Ditto. (ccalloc_abort): Ditto. * cygheap_malloc.h (HEAP_USER): Add. (cmalloc): Use size_t for size field in declaration. (cmalloc_abort): Ditto. (crealloc): Ditto. (crealloc_abort): Ditto. (ccalloc): Ditto. (ccalloc_abort): Ditto. * path.cc (normalize_posix_path): Don't check existence of / or // dir in parent dir check.
-rw-r--r--winsup/cygwin/ChangeLog23
-rw-r--r--winsup/cygwin/cygheap.cc18
-rw-r--r--winsup/cygwin/cygheap_malloc.h13
3 files changed, 38 insertions, 16 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 1c8bc5a76..273861a58 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,24 @@
+2013-07-31 Christopher Faylor <me.cygwin2013@cgf.cx>
+
+ * cygheap.cc (cmalloc): Use size_t for size field.
+ (cmalloc_abort): Ditto.
+ (crealloc): Ditto.
+ (crealloc_abort): Ditto.
+ (ccalloc): Ditto.
+ (ccalloc_abort): Ditto.
+ * cygheap_malloc.h (HEAP_USER): Add.
+ (cmalloc): Use size_t for size field in declaration.
+ (cmalloc_abort): Ditto.
+ (crealloc): Ditto.
+ (crealloc_abort): Ditto.
+ (ccalloc): Ditto.
+ (ccalloc_abort): Ditto.
+
+2013-07-31 Corinna Vinschen <corinna@vinschen.de>
+
+ * path.cc (normalize_posix_path): Don't check existence of / or // dir
+ in parent dir check.
+
2013-07-31 Corinna Vinschen <corinna@vinschen.de>
* path.cc (normalize_posix_path): Don't check existence of / or // dir
@@ -921,7 +942,7 @@
* cygtls.h (_cygtls::signal_debugger): Change argument type.
(_cygtls::copy_context): Delete declaration.
* exceptions.cc (exception::handle): Don't call copy_context() here.
- Move signal_handler call earlier and always call it.
+ Move signal_handler call earlier and always call it.
(_cygtls::copy_context): Delete definition.
(_cygtls::signal_debugger): Move copy_context logic here. Suspend
thread receiving signal before gathering context information.
diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc
index bb926118f..ea6eaa1a9 100644
--- a/winsup/cygwin/cygheap.cc
+++ b/winsup/cygwin/cygheap.cc
@@ -391,7 +391,7 @@ creturn (cygheap_types x, cygheap_entry * c, unsigned len, const char *fn = NULL
}
inline static void *
-cmalloc (cygheap_types x, DWORD n, const char *fn)
+cmalloc (cygheap_types x, size_t n, const char *fn)
{
cygheap_entry *c;
MALLOC_CHECK;
@@ -400,19 +400,19 @@ cmalloc (cygheap_types x, DWORD n, const char *fn)
}
extern "C" void *
-cmalloc (cygheap_types x, DWORD n)
+cmalloc (cygheap_types x, size_t n)
{
return cmalloc (x, n, NULL);
}
extern "C" void *
-cmalloc_abort (cygheap_types x, DWORD n)
+cmalloc_abort (cygheap_types x, size_t n)
{
return cmalloc (x, n, "cmalloc");
}
inline static void *
-crealloc (void *s, DWORD n, const char *fn)
+crealloc (void *s, size_t n, const char *fn)
{
MALLOC_CHECK;
if (s == NULL)
@@ -426,13 +426,13 @@ crealloc (void *s, DWORD n, const char *fn)
}
extern "C" void *__reg2
-crealloc (void *s, DWORD n)
+crealloc (void *s, size_t n)
{
return crealloc (s, n, NULL);
}
extern "C" void *__reg2
-crealloc_abort (void *s, DWORD n)
+crealloc_abort (void *s, size_t n)
{
return crealloc (s, n, "crealloc");
}
@@ -454,7 +454,7 @@ cfree_and_set (char *&s, char *what)
}
inline static void *
-ccalloc (cygheap_types x, DWORD n, DWORD size, const char *fn)
+ccalloc (cygheap_types x, size_t n, size_t size, const char *fn)
{
cygheap_entry *c;
MALLOC_CHECK;
@@ -466,13 +466,13 @@ ccalloc (cygheap_types x, DWORD n, DWORD size, const char *fn)
}
extern "C" void *__reg3
-ccalloc (cygheap_types x, DWORD n, DWORD size)
+ccalloc (cygheap_types x, size_t n, size_t size)
{
return ccalloc (x, n, size, NULL);
}
extern "C" void *__reg3
-ccalloc_abort (cygheap_types x, DWORD n, DWORD size)
+ccalloc_abort (cygheap_types x, size_t n, size_t size)
{
return ccalloc (x, n, size, "ccalloc");
}
diff --git a/winsup/cygwin/cygheap_malloc.h b/winsup/cygwin/cygheap_malloc.h
index a7632a940..a4ab2462e 100644
--- a/winsup/cygwin/cygheap_malloc.h
+++ b/winsup/cygwin/cygheap_malloc.h
@@ -25,6 +25,7 @@ enum cygheap_types
HEAP_ARCHETYPES,
HEAP_TLS,
HEAP_COMMUNE,
+ HEAP_USER,
HEAP_1_START,
HEAP_1_HOOK,
HEAP_1_STR,
@@ -41,12 +42,12 @@ enum cygheap_types
extern "C" {
void __reg1 cfree (void *);
-void *__reg2 cmalloc (cygheap_types, DWORD);
-void *__reg2 crealloc (void *, DWORD);
-void *__reg3 ccalloc (cygheap_types, DWORD, DWORD);
-void *__reg2 cmalloc_abort (cygheap_types, DWORD);
-void *__reg2 crealloc_abort (void *, DWORD);
-void *__reg3 ccalloc_abort (cygheap_types, DWORD, DWORD);
+void *__reg2 cmalloc (cygheap_types, size_t);
+void *__reg2 crealloc (void *, size_t);
+void *__reg3 ccalloc (cygheap_types, size_t, size_t);
+void *__reg2 cmalloc_abort (cygheap_types, size_t);
+void *__reg2 crealloc_abort (void *, size_t);
+void *__reg3 ccalloc_abort (cygheap_types, size_t, size_t);
PWCHAR __reg1 cwcsdup (const PWCHAR);
PWCHAR __reg1 cwcsdup1 (const PWCHAR);
char *__reg1 cstrdup (const char *);