1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
2001-05-22  Andreas Jaeger  <aj@suse.de>

	* sysdeps/ieee754/ldbl-128/s_log1pl.c: New file, contributed by
	Stephen L Moshier <moshier@mediaone.net>.

2001-05-22  Martin Schwidefsky  <schwidefsky@de.ibm.com>

	* sysdeps/s390/s390-32/backtrace.c: Make backtrace return the
	return addresses instead of the stack pointers.
	* sysdeps/s390/s390-64/backtrace.c: Likewise.

2001-05-21  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/unix/sysv/linux/ia64/sys/ucontext.h: Include
	bits/sigcontext.h instead of bits/sigstack.h.
	* sysdeps/unix/sysv/linux/ia64/bits/sigcontext.h: Add
	multiple-inclusion guards.
This commit is contained in:
Andreas Jaeger
2001-05-22 08:46:19 +00:00
parent 0bc93a2fb1
commit 90b828e6ad
7 changed files with 273 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1996, 1997, 1998,2000 Free Software Foundation, Inc.
/* Copyright (C) 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Jes Sorensen <jes@linuxcare.com>, July 2000
@ -21,6 +21,9 @@
# error "Never use <bits/sigcontext.h> directly; include <signal.h> instead."
#endif
#ifndef _BITS_SIGCONTEXT_H
#define _BITS_SIGCONTEXT_H 1
#include <asm/fpu.h>
#include <bits/sigstack.h>
@ -50,3 +53,5 @@ struct sigcontext
* include the kernel headers here. */
unsigned long int sc_mask; /* signal mask to restore after handler returns */
};
#endif _BITS_SIGCONTEXT_H