mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 06:30:05 +00:00
Update.
* tst-cancel-wrappers.sh: Invoke gawk not awk since we use GNU awk features. Reported by Marijn Ros <marijn@mad.scientist.com>.
This commit is contained in:
parent
c97c64de01
commit
a73ab6df85
@ -10,6 +10,9 @@
|
|||||||
|
|
||||||
2003-01-05 Ulrich Drepper <drepper@redhat.com>
|
2003-01-05 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* tst-cancel-wrappers.sh: Invoke gawk not awk since we use GNU awk
|
||||||
|
features. Reported by Marijn Ros <marijn@mad.scientist.com>.
|
||||||
|
|
||||||
* Makefile (libc.so-no-z-defs): Define to yes.
|
* Makefile (libc.so-no-z-defs): Define to yes.
|
||||||
|
|
||||||
2003-01-05 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
2003-01-05 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Test whether all cancellable functions are cancellable.
|
# Test whether all cancelable functions are cancelable.
|
||||||
# Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
# Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
# Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
|
# Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
|
||||||
@ -20,7 +20,7 @@
|
|||||||
# 02111-1307 USA.
|
# 02111-1307 USA.
|
||||||
|
|
||||||
while [ $# -gt 0 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
( nm -P $1; echo 'end[end]:' ) | awk ' BEGIN {
|
( nm -P $1; echo 'end[end]:' ) | gawk ' BEGIN {
|
||||||
C["accept"]=1
|
C["accept"]=1
|
||||||
C["close"]=1
|
C["close"]=1
|
||||||
C["connect"]=1
|
C["connect"]=1
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2003-01-05 Ulrich Drepper <drepper@redhat.com>
|
2003-01-05 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* tst-cancel-wrappers.sh: Invoke gawk not awk since we use GNU awk
|
||||||
|
features. Reported by Marijn Ros <marijn@mad.scientist.com>.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/jmp-unwind.c: Include <pthread-functions.h>.
|
* sysdeps/unix/sysv/linux/jmp-unwind.c: Include <pthread-functions.h>.
|
||||||
Use __libc_pthread_functions array if SHARED.
|
Use __libc_pthread_functions array if SHARED.
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002 Free Software Foundation, Inc.
|
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -80,7 +80,8 @@ typedef uintmax_t uatomic_max_t;
|
|||||||
not in the moment. Using it would mean causing portability
|
not in the moment. Using it would mean causing portability
|
||||||
problems since not many other 32-bit architectures have support for
|
problems since not many other 32-bit architectures have support for
|
||||||
such an operation. So don't define any code for now. If it is
|
such an operation. So don't define any code for now. If it is
|
||||||
really going to be used the code below can be used. */
|
really going to be used the code below can be used on Intel Pentium
|
||||||
|
and later, but NOT on i486. */
|
||||||
#if 1
|
#if 1
|
||||||
# define __arch_compare_and_exchange_64_acq(mem, newval, oldval) \
|
# define __arch_compare_and_exchange_64_acq(mem, newval, oldval) \
|
||||||
(abort (), 0)
|
(abort (), 0)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Test whether all cancellable functions are cancellable.
|
# Test whether all cancellable functions are cancellable.
|
||||||
# Copyright (C) 2002 Free Software Foundation, Inc.
|
# Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
# Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
|
# Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
# 02111-1307 USA.
|
# 02111-1307 USA.
|
||||||
|
|
||||||
while [ $# -gt 0 ]; do
|
while [ $# -gt 0 ]; do
|
||||||
( nm -P $1; echo 'end[end]:' ) | awk ' BEGIN {
|
( nm -P $1; echo 'end[end]:' ) | gawk ' BEGIN {
|
||||||
C["accept"]=1
|
C["accept"]=1
|
||||||
C["close"]=1
|
C["close"]=1
|
||||||
C["connect"]=1
|
C["connect"]=1
|
||||||
|
Loading…
Reference in New Issue
Block a user