diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-08-31 18:55:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-08-31 18:55:52 +0000 |
commit | 28c97261ea0b6570b6c92222f5a8676a012bdf21 (patch) | |
tree | 99a85cb1a58c0e3cf6296b5c4a3243f7a05a3969 | |
parent | cd2fbe58e617407e79b64c68cef34224803aa910 (diff) | |
download | glibc-28c97261ea0b6570b6c92222f5a8676a012bdf21.tar.gz glibc-28c97261ea0b6570b6c92222f5a8676a012bdf21.tar.xz glibc-28c97261ea0b6570b6c92222f5a8676a012bdf21.zip |
Update.
2003-08-31 Philip Blundell <philb@gnu.org> * sysdeps/unix/sysv/linux/arm/Versions: Add posix_fadvise64 and posix_fallocate64 at GLIBC_2.3.3.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/sysdeps/pthread/bits/libc-lock.h | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/arm/Versions | 3 |
4 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index aee96cd554..0b78e5eba0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-08-31 Philip Blundell <philb@gnu.org> + + * sysdeps/unix/sysv/linux/arm/Versions: Add posix_fadvise64 and + posix_fallocate64 at GLIBC_2.3.3. + 2003-08-31 Ulrich Drepper <drepper@redhat.com> * sysdeps/x86_64/bsd-_setjmp.S: Use HIDDEN_JUMPTARGET. diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 0e78e123ce..6d04d99107 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2003-08-31 Ulrich Drepper <drepper@redhat.com> + + * sysdeps/pthread/bits/libc-lock.h: Mark pthread_setcancelstate as + weak. + 2003-08-30 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/sparc/sparc64/Versions: New file. diff --git a/nptl/sysdeps/pthread/bits/libc-lock.h b/nptl/sysdeps/pthread/bits/libc-lock.h index f7ed88dae6..327e3833fa 100644 --- a/nptl/sysdeps/pthread/bits/libc-lock.h +++ b/nptl/sysdeps/pthread/bits/libc-lock.h @@ -534,6 +534,7 @@ weak_extern (__pthread_initialize) weak_extern (__pthread_atfork) weak_extern (BP_SYM (_pthread_cleanup_push_defer)) weak_extern (BP_SYM (_pthread_cleanup_pop_restore)) +weak_extern (BP_SYM (pthread_setcancelstate)) # else # pragma weak __pthread_mutex_init # pragma weak __pthread_mutex_destroy @@ -557,6 +558,7 @@ weak_extern (BP_SYM (_pthread_cleanup_pop_restore)) # pragma weak __pthread_atfork # pragma weak _pthread_cleanup_push_defer # pragma weak _pthread_cleanup_pop_restore +# pragma weak pthread_setcancelstate # endif #endif diff --git a/sysdeps/unix/sysv/linux/arm/Versions b/sysdeps/unix/sysv/linux/arm/Versions index 32cb185505..2ddb2af2b7 100644 --- a/sysdeps/unix/sysv/linux/arm/Versions +++ b/sysdeps/unix/sysv/linux/arm/Versions @@ -31,4 +31,7 @@ libc { # v* versionsort64; } + GLIBC_2.3.3 { + posix_fadvise64; posix_fallocate64; + } } |