mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-17 13:00:43 +08:00
Update.
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.
This commit is contained in:
parent
6df659be10
commit
39d1d4e5ca
27
ChangeLog
27
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
|
||||
|
@ -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"
|
||||
|
@ -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);
|
||||
|
@ -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. */
|
||||
|
@ -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
|
||||
@ -18,13 +18,13 @@
|
||||
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));
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -45,21 +45,21 @@
|
||||
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;
|
||||
|
@ -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
|
||||
@ -25,7 +25,20 @@
|
||||
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;
|
||||
|
@ -24,6 +24,26 @@
|
||||
|
||||
#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;
|
||||
|
||||
|
@ -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'. */
|
||||
|
Loading…
Reference in New Issue
Block a user