diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-22 00:07:21 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-22 00:07:21 +0000 |
commit | 4baa087aff637bae18105d983684d29457b04982 (patch) | |
tree | 830b005f5e804bf58c5a01af76f993b7b9461cb3 /nptl | |
parent | 002ff853059c14c55188a6cbe4fdbc4baa06219e (diff) | |
download | glibc-4baa087aff637bae18105d983684d29457b04982.tar glibc-4baa087aff637bae18105d983684d29457b04982.tar.gz glibc-4baa087aff637bae18105d983684d29457b04982.tar.bz2 glibc-4baa087aff637bae18105d983684d29457b04982.zip |
* sysdeps/i386/i486/bits/atomic.h (atomic_bit_set): Use "ir"
constraint to permit non-constant BIT argument.
(atomic_bit_test_set): Likewise.
* sysdeps/x86_64/bits/atomic.h (atomic_bit_test_set): Likewise.
(atomic_bit_set): Likewise. Use 1UL in case that BIT might be >= 32.
For quadword case, use "i" constraint if __builtin_constant_p and < 32
or "r" constraint otherwise.
* configure.in: Move AC_PROG_CC and other program-finding before all
the version checks.
* configure: Regenerated.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 6 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/fork.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 111e6493d5..1665c2b865 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2003-03-22 Jakub Jelinek <jakub@redhat.com> + + * sysdeps/unix/sysv/linux/fork.c (__fork): Add libc_hidden_def. + 2003-03-21 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/ia64/lowlevellock.h @@ -29,7 +33,7 @@ 2003-03-20 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Include <atomic.h>. - Remove __lll_add, __lll_dev_if_positive, and __lll_test_and_set + Remove __lll_add, __lll_dec_if_positive, and __lll_test_and_set definitions. Replace uses with calls to atomic_* functions. * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise. * sysdeps/unix/sysv/linux/lowlevellock.c: Replace __lll_add and diff --git a/nptl/sysdeps/unix/sysv/linux/fork.c b/nptl/sysdeps/unix/sysv/linux/fork.c index 4cc13746ae..cbe9ccbe1b 100644 --- a/nptl/sysdeps/unix/sysv/linux/fork.c +++ b/nptl/sysdeps/unix/sysv/linux/fork.c @@ -131,4 +131,5 @@ __libc_fork (void) return pid; } weak_alias (__libc_fork, __fork) +libc_hidden_def (__fork) weak_alias (__libc_fork, fork) |