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:
authorJeff Johnston <jjohnstn@redhat.com>2002-06-01 00:18:59 +0400
committerJeff Johnston <jjohnstn@redhat.com>2002-06-01 00:18:59 +0400
commitea55e3f7f3a213d4e3b5bdf966eecaf0aa1b7112 (patch)
tree5688b01e763ee509bc9e0dc1c8b43eb2dfa55261 /newlib/ChangeLog
parent89d7acf37a914c31834776879591c3301fb36c9b (diff)
2002-05-31 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/Makefile.am: Add sig.c and sigaction.c. Also make siglist.inc dependent on sig.c instead of signal.c. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/sig.c: Rename from signal.c and change code to use NSIG instead of _NSIG. * libc/sys/linux/sigaction.c: New file. * libc/sys/linux/signal.c: Changed to be linux signal() function so as to override regular newlib default signal.c. * libc/sys/linux/linuxthreads/config.h: Add __ASSUME_REALTIME_SIGNALS definition. * libc/sys/linux/linuxthreads/testrtsig.h: New file. * libc/sys/linux/machine/i386/Makefile.am: Remove sigset.c. * libc/sys/linux/machine/i386/Makefile.in: Regenerated. * libc/sys/linux/machine/i386/sigset.c: Moved to linux main directory. * libc/sys/linux/sigset.c: Moved from machine/i386 directory. * libc/sys/linux/sys/signal.h: Redefine NSIG to _NSIG and override default linux sigset_t typedef by defining it equal to __sigset_t. * libc/unix/sigset.c: Add check so code isn't compiled on systems with a sigset_t that isn't implemented with a single int.
Diffstat (limited to 'newlib/ChangeLog')
-rw-r--r--newlib/ChangeLog22
1 files changed, 22 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 1b888fb36..91dcb7a5d 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,25 @@
+2002-05-31 Jeff Johnston <jjohnstn@redhat.com>
+
+ * libc/sys/linux/Makefile.am: Add sig.c and sigaction.c. Also
+ make siglist.inc dependent on sig.c instead of signal.c.
+ * libc/sys/linux/Makefile.in: Regenerated.
+ * libc/sys/linux/sig.c: Rename from signal.c and change code to
+ use NSIG instead of _NSIG.
+ * libc/sys/linux/sigaction.c: New file.
+ * libc/sys/linux/signal.c: Changed to be linux signal() function
+ so as to override regular newlib default signal.c.
+ * libc/sys/linux/linuxthreads/config.h: Add __ASSUME_REALTIME_SIGNALS
+ definition.
+ * libc/sys/linux/linuxthreads/testrtsig.h: New file.
+ * libc/sys/linux/machine/i386/Makefile.am: Remove sigset.c.
+ * libc/sys/linux/machine/i386/Makefile.in: Regenerated.
+ * libc/sys/linux/machine/i386/sigset.c: Moved to linux main directory.
+ * libc/sys/linux/sigset.c: Moved from machine/i386 directory.
+ * libc/sys/linux/sys/signal.h: Redefine NSIG to _NSIG and override
+ default linux sigset_t typedef by defining it equal to __sigset_t.
+ * libc/unix/sigset.c: Add check so code isn't compiled on systems
+ with a sigset_t that isn't implemented with a single int.
+
2002-05-30 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/Makefile.am: Add support for new files.