about summary refs log tree commit diff
path: root/linuxthreads/sysdeps
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-03-22 00:07:21 +0000
committerRoland McGrath <roland@gnu.org>2003-03-22 00:07:21 +0000
commit4baa087aff637bae18105d983684d29457b04982 (patch)
tree830b005f5e804bf58c5a01af76f993b7b9461cb3 /linuxthreads/sysdeps
parent002ff853059c14c55188a6cbe4fdbc4baa06219e (diff)
downloadglibc-4baa087aff637bae18105d983684d29457b04982.tar.gz
glibc-4baa087aff637bae18105d983684d29457b04982.tar.xz
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 'linuxthreads/sysdeps')
-rw-r--r--linuxthreads/sysdeps/unix/sysv/linux/fork.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/fork.c b/linuxthreads/sysdeps/unix/sysv/linux/fork.c
index 443fb2b168..00eb787093 100644
--- a/linuxthreads/sysdeps/unix/sysv/linux/fork.c
+++ b/linuxthreads/sysdeps/unix/sysv/linux/fork.c
@@ -39,4 +39,5 @@ __libc_fork (void)
   return __libc_maybe_call2 (pthread_fork, (&__fork_block), ARCH_FORK ());
 }
 weak_alias (__libc_fork, __fork)
+libc_hidden_def (__fork)
 weak_alias (__libc_fork, fork)