diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-15 22:05:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-15 22:05:51 +0000 |
commit | f3015aa5ff2af899b7bb69576074cd4123911b61 (patch) | |
tree | 5d775f3a7f04e7fa43c2c097f4ee5d90ae680144 /nptl | |
parent | 96e0b6af32710c5c212d2e8f7d6cb257b9af92a8 (diff) | |
download | glibc-f3015aa5ff2af899b7bb69576074cd4123911b61.zip glibc-f3015aa5ff2af899b7bb69576074cd4123911b61.tar.gz glibc-f3015aa5ff2af899b7bb69576074cd4123911b61.tar.bz2 |
Update.
2002-12-15 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/i386/fcntl.c (do_fcntl): This is the
original __libc_fcntl code. Just renamed.
* sysdeps/unix/sysv/linux/m68k/clone.S: Make inline syscall to _exit.
2002-12-14 Olaf Hering <olh@suse.de>
* sysdeps/powerpc/bits/setjmp.h: Include <bits/wordsize.h>.
* sysdeps/powerpc/powerpc64/setjmp.S: Fix typo in r18 load.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 2 | ||||
-rw-r--r-- | nptl/Versions | 4 | ||||
-rw-r--r-- | nptl/pt-fcntl.c | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 8529a26..a460d61 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,5 +1,7 @@ 2002-12-15 Ulrich Drepper <drepper@redhat.com> + * pt-fcntl.c (__fcntl): Use fcntl64 syscall, not fcntl. + * Versions [libpthread: GLIBC_2.3.2]: Remove creat, poll, pselect, readv, select, sigpause, sigsuspend, sigwaitinfo, waitid, writev. * Makefile (libpthread-routines): Remove pt-creat, pt-poll, diff --git a/nptl/Versions b/nptl/Versions index 309a101..488ea2e 100644 --- a/nptl/Versions +++ b/nptl/Versions @@ -190,10 +190,6 @@ libpthread { } GLIBC_2.3.2 { - # The version for these interfaces is fixed. - creat; poll; pselect; readv; select; sigpause; sigsuspend; - sigwaitinfo; waitid; writev; __xpg_sigpause; - # Proposed API extensions. # XXX Adjust number for final release. pthread_tryjoin_np; pthread_timedjoin_np; diff --git a/nptl/pt-fcntl.c b/nptl/pt-fcntl.c index 5b55f0b..7d4a92c 100644 --- a/nptl/pt-fcntl.c +++ b/nptl/pt-fcntl.c @@ -38,7 +38,7 @@ __fcntl (int fd, int cmd, ...) va_start (ap, cmd); #ifdef INLINE_SYSCALL - int result = INLINE_SYSCALL (fcntl, 3, fd, cmd, va_arg (ap, long int)); + int result = INLINE_SYSCALL (fcntl64, 3, fd, cmd, va_arg (ap, long int)); #else int result = __libc_fcntl (fd, cmd, va_arg (ap, long int)); #endif |