Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 12 Oct 1999 16:00:04 +0000 (16:00 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 12 Oct 1999 16:00:04 +0000 (16:00 +0000)
1999-10-12  Andreas Jaeger  <aj@suse.de>

* stdlib/tst-environ.c: Include <string.h> for strcpy declaration.

* math/basic-test.c: Fix typo.

* locale/programs/xstrdup.c: Include string.h for glibc
compilation to get string prototypes.

* sysdeps/unix/sysv/linux/alpha/sys/ucontext.h: Add definition of
gregset_t and fpregset_t.

* sysdeps/generic/s_nexttowardf.c: Add parenthesis to shut up gcc
warnings.  Correct value for x == 0.

* argp/argp-help.c: Remove broken definition of flockfile and
funlockfile.

1999-10-12  Andreas Schwab  <schwab@suse.de>

* sysdeps/unix/sysv/linux/alpha/bits/sigaction.h: Update to match
generic Linux version.

1999-10-12  Ulrich Drepper  <drepper@cygnus.com>

* sysdeps/unix/sysv/linux/bits/sigaction.h: Remove K&R compatibility.

ChangeLog
argp/argp-help.c
linuxthreads/internals.h
linuxthreads_db/thread_dbP.h
locale/programs/xstrdup.c
math/basic-test.c
stdlib/tst-environ.c
sysdeps/generic/s_nexttowardf.c
sysdeps/unix/sysv/linux/alpha/bits/sigaction.h
sysdeps/unix/sysv/linux/alpha/sys/ucontext.h
sysdeps/unix/sysv/linux/bits/sigaction.h

index 89d389e..bbf244d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,30 @@
+1999-10-12  Andreas Jaeger  <aj@suse.de>
+
+       * stdlib/tst-environ.c: Include <string.h> for strcpy declaration.
+
+       * math/basic-test.c: Fix typo.
+
+       * locale/programs/xstrdup.c: Include string.h for glibc
+       compilation to get string prototypes.
+
+       * sysdeps/unix/sysv/linux/alpha/sys/ucontext.h: Add definition of
+       gregset_t and fpregset_t.
+
+       * sysdeps/generic/s_nexttowardf.c: Add parenthesis to shut up gcc
+       warnings.  Correct value for x == 0.
+
+       * argp/argp-help.c: Remove broken definition of flockfile and
+       funlockfile.
+
+1999-10-12  Andreas Schwab  <schwab@suse.de>
+
+       * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h: Update to match
+       generic Linux version.
+
+1999-10-12  Ulrich Drepper  <drepper@cygnus.com>
+
+       * sysdeps/unix/sysv/linux/bits/sigaction.h: Remove K&R compatibility.
+
 1999-10-11  Ulrich Drepper  <drepper@cygnus.com>
 
        * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Add gregset_t
index f5d96fb..5ab6aa7 100644 (file)
@@ -62,11 +62,6 @@ char *alloca ();
 # endif
 #endif
 
-#ifdef USE_IN_LIBIO
-# define flockfile(s) _IO_flockfile (s)
-# define funlockfile(s) _IO_funlockfile (s)
-#endif
-
 #include "argp.h"
 #include "argp-fmtstream.h"
 #include "argp-namefrob.h"
index 14c4b4e..6e9dc10 100644 (file)
@@ -358,9 +358,9 @@ extern void __pthread_kill_other_threads_np __P ((void));
 extern int __libc_close (int fd);
 extern int __libc_nanosleep (const struct timespec *requested_time,
                             struct timespec *remaining);
-extern int __libc_read (int fd, void *buf, size_t count);
+extern ssize_t __libc_read (int fd, void *buf, size_t count);
 extern pid_t __libc_waitpid (pid_t pid, int *stat_loc, int options);
-extern int __libc_write (int fd, const void *buf, size_t count);
+extern ssize_t __libc_write (int fd, const void *buf, size_t count);
 
 /* Prototypes for some of the new semaphore functions.  */
 extern int __new_sem_post (sem_t * sem);
index 8db5b58..1fd09e9 100644 (file)
@@ -2,6 +2,7 @@
 #ifndef _THREAD_DBP_H
 #define _THREAD_DBP_H  1
 
+#include <string.h>
 #include "thread_db.h"
 #include "../linuxthreads/internals.h"
 
@@ -10,8 +11,6 @@
 
 /* Comment out the following for less verbose output.  */
 #define LOG(c) __libc_write (2, c "\n", strlen (c "\n"))
-extern ssize_t __libc_write (int, const void *, size_t);
-
 
 
 /* Handle for a process.  This type is opaque.  */
index 4c2551e..3947dd1 100644 (file)
@@ -1,5 +1,5 @@
 /* xstrdup.c -- copy a string with out of memory checking
-   Copyright (C) 1990, 1996, 1997 Free Software Foundation, Inc.
+   Copyright (C) 1990, 1996, 1997, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
    Boston, MA 02111-1307, USA.  */
 
 #ifdef HAVE_CONFIG_H
-#include <config.h>
+# include <config.h>
 #endif
 
-#if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
-#include <string.h>
+#if defined STDC_HEADERS || defined HAVE_STRING_H || __LIBC
+# include <string.h>
 #else
-#include <strings.h>
+# include <strings.h>
 #endif
 void *xmalloc __P ((size_t n));
 char *xstrdup __P ((char *string));
index 4706519..5d26e84 100644 (file)
@@ -106,7 +106,7 @@ NAME (void)                                                               \
 TEST_FUNC (float_test, float, nanf, FLT_EPSILON, HUGE_VALF)
 TEST_FUNC (double_test, double, nan, DBL_EPSILON, HUGE_VAL)
 #ifndef NO_LONG_DOUBLE
-TEST_FUNC (ldouble_test, long double, nan, LDBL_EPSILON, HUGE_VALL)
+TEST_FUNC (ldouble_test, long double, nanl, LDBL_EPSILON, HUGE_VALL)
 #endif
 
 int
index f728ce5..79eb0cb 100644 (file)
@@ -1,5 +1,24 @@
+/* Copyright (C) 1999 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 
 #define VAR "FOOBAR"
index 56cc04c..f99b503 100644 (file)
        if((long double) x==y) return y;        /* x=y, return y */
        if(ix==0) {                             /* x == 0 */
            float x2;
-           SET_FLOAT_WORD(x,(u_int32_t)((hy>>32)&0x80000000)|1);/* return +-minsub*/
+           SET_FLOAT_WORD(x,(u_int32_t)(hy&0x80000000)|1);/* return +-minsub*/
            x2 = x*x;
            if(x2==x) return x2; else return x; /* raise underflow flag */
        }
        if(hx>=0) {                             /* x > 0 */
            if(hy<0||(ix>>23)>(iy>>20)-0x380
               || ((ix>>23)==(iy>>20)-0x380
-                  && (ix&0x7fffff)>((hy<<3)|(ly>>29))&0x7fffff))       /* x > y, x -= ulp */
+                  && (ix&0x7fffff)>(((hy<<3)|(ly>>29))&0x7fffff)))     /* x > y, x -= ulp */
                hx -= 1;
            else                                /* x < y, x += ulp */
                hx += 1;
        } else {                                /* x < 0 */
            if(hy>=0||(ix>>23)>(iy>>20)-0x380
               || ((ix>>23)==(iy>>20)-0x380
-                  && (ix&0x7fffff)>((hy<<3)|(ly>>29))&0x7fffff))       /* x < y, x -= ulp */
+                  && (ix&0x7fffff)>(((hy<<3)|(ly>>29))&0x7fffff)))     /* x < y, x -= ulp */
                hx -= 1;
            else                                /* x > y, x += ulp */
                hx += 1;
index 2f8b3ba..7a586be 100644 (file)
@@ -1,5 +1,5 @@
 /* The proper definitions for Linux/Alpha sigaction.
-   Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 struct sigaction
   {
     /* Signal handler.  */
+#ifdef __USE_POSIX199309
+    union
+      {
+       /* Used if SA_SIGINFO is not set.  */
+       __sighandler_t sa_handler;
+       /* Used if SA_SIGINFO is set.  */
+       void (*sa_sigaction) (int, siginfo_t *, void *);
+      }
+    __sigaction_handler;
+# define sa_handler    __sigaction_handler.sa_handler
+# define sa_sigaction  __sigaction_handler.sa_sigaction
+#else
     __sighandler_t sa_handler;
+#endif
 
     /* Additional set of signals to be blocked.  */
     __sigset_t sa_mask;
index 08eeb6e..50c643a 100644 (file)
 
 #include <bits/sigcontext.h>
 
+
+/* Type for general register.  */
+typedef long int greg_t;
+
+/* Number of general registers.  */
+#define NGREG  33
+
+/* Container for all general registers.  */
+typedef greg_t gregset_t[NGREG];
+
+/* Type for floating-point register.  */
+typedef long int fpreg_t;
+
+/* Number of general registers.  */
+#define NFPREG 32
+
+/* Container for all general registers.  */
+typedef fpreg_t fpregset_t[NFPREG];
+
+
 /* A machine context is exactly a sigcontext.  */
 typedef struct sigcontext mcontext_t;
 
index b357c45..d4ba74d 100644 (file)
@@ -1,5 +1,5 @@
 /* The proper definitions for Linux's sigaction.
-   Copyright (C) 1993, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
+   Copyright (C) 1993, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -31,7 +31,7 @@ struct sigaction
        /* Used if SA_SIGINFO is not set.  */
        __sighandler_t sa_handler;
        /* Used if SA_SIGINFO is set.  */
-       void (*sa_sigaction) __PMT ((int, siginfo_t *, void *));
+       void (*sa_sigaction) (int, siginfo_t *, void *);
       }
     __sigaction_handler;
 # define sa_handler    __sigaction_handler.sa_handler
@@ -47,7 +47,7 @@ struct sigaction
     int sa_flags;
 
     /* Restore handler.  */
-    void (*sa_restorer) __PMT ((void));
+    void (*sa_restorer) (void);
   };
 
 /* Bits in `sa_flags'.  */