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:
Diffstat (limited to 'winsup/cygwin/ChangeLog')
-rw-r--r--winsup/cygwin/ChangeLog104
1 files changed, 104 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 8810d54cd..3d4140afb 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,107 @@
+2003-09-01 Christopher Faylor <cgf@redhat.com>
+
+ * net.cc (dup_ent): Restore check for NULL input.
+
+2003-08-31 Christopher Faylor <cgf@redhat.com>
+
+ * include/sys/cygwin.h: Don't define cygwin-specific things if
+ !__CYGWIN__.
+
+2003-08-31 Christopher Faylor <cgf@redhat.com>
+
+ * cygheap.cc (cygheap_init): Allocate space for sigaction array in
+ cygheap.
+ * cygheap.h (cygheap_types): Add HEAP_SIGS.
+ * exceptions.cc (signal_fixup_after_exec): Remove from this file.
+ * pinfo.h (pinfo::getsig): Just return global_sigs array.
+ (pinfo::sigs): Delete.
+ * sigproc.cc (signal_fixup_after_exec): Move it here.
+ (global_sigs): New global array, moved from pinfo structure.
+ (sigalloc): New function. Allocate global sigaction array here.
+ (proc_subproc): Remove copysigs call. It's automatic now.
+ * include/sys/cygwin.h (PID_NOCLDSTOP): New value.
+ * signal.cc (sigaction): Set myself->PID_NODCLDSTOP when appropriate.
+ * sigproc.h (sigalloc): Declare.
+
+ * fnmatch.c (fnmatch): Use C90 parameters.
+ (rangematch): Ditto.
+
+ * fhandler.cc (fhandler_base::raw_read): Use right coercion to avoid a
+ compiler warning.
+
+2003-08-31 Christopher Faylor <cgf@redhat.com>
+
+ * net.cc (dup_ent): Make debugging output consistent.
+
+2003-08-31 Christopher Faylor <cgf@redhat.com>
+
+ Use dup_ent rather than specific dup_*_ptr functions throughout.
+ * (gen_ent): Delete.
+ (dup_ent): Subsume gen_ent functionality.
+ (dup_host_ptr): Delete.
+ (dup_proto_ptr): Ditto.
+ (dup_servent_ptr): Ditto.
+
+2003-08-31 Christopher Faylor <cgf@redhat.com>
+
+ * net.cc (gen_ent): Invert sense of null check so that debug output
+ makes sense.
+
+2003-08-31 Christopher Faylor <cgf@redhat.com>
+
+ * net.cc (free_char_list): Delete.
+ (dup_addr_list): Delete.
+ (dup_char_list): Delete.
+ (free_hostent_ptr): Delete.
+ (free_protoent_ptr): Delete.
+ (free_servent_ptr): Delete.
+ (DWORD_round): New function.
+ (strlen_round): New function. Returns strlen rounded up to word size.
+ (dup_ent): New, generic function to duplicate a {host,proto,serv}ent
+ structure.
+ (gen_ent): New macro. Generates a generic dup_{host,proto,serv}ent_ptr
+ function.
+ (cygwin_getservbyname): Remove call to free_servent_ptr, pass
+ servent_buf to dup_servent_ptr.
+ (cygwin_getservbyport): Ditto.
+ (cygwin_gethostbyname): Ditto for hostent.
+ (cygwin_gethostbyaddr): Ditto.
+ (cygwin_getprotobyname): Ditto for protoent.
+ (cygwin_getprotobynumber): Ditto.
+
+2003-08-31 Christopher Faylor <cgf@redhat.com>
+
+ * Makefile.in (MALLOC_OFILES): Always fill in with correct malloc
+ object.
+ * configure.in: Fill in MALLOC_OFILES with either debugging or regular
+ malloc.
+ * configure: Regenerate.
+ * dlmalloc.c: Make various fruitless changes to attempt to get to work.
+ * dlmalloc.h: Ditto.
+ * malloc.cc (free): Check malloc pool when debugging.
+
+ * path.cc (win32_device_name): Eliminate compiler warning.
+
+ * sigproc.cc (sig_dispatch_pending): Remove use of was_pending. Let
+ thisframe.call_signal_handler decide if handler should be called rather
+ than using bogus was_pending check.
+
+ * exceptions.cc (interrupt_setup): Remove accidentally checked in
+ debugging code.
+
+2003-08-30 Christopher Faylor <cgf@redhat.com>
+
+ * heap.cc (sbrk): Save rounded addess in user_heap_max.
+
+2003-08-30 Christopher Faylor <cgf@redhat.com>
+
+ * sigproc.cc (sig_dispatch_pending): Remove explicit call to
+ thisframe.call_signal_handler.
+
+2003-08-30 Christopher Faylor <cgf@redhat.com>
+
+ Remove some cygserver files.
+
2003-08-28 Christopher Faylor <cgf@redhat.com>
* sigproc.h: Make some functions regparm.