diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-27 14:19:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-27 14:19:07 +0000 |
commit | c70ca1fa69c9a95108664b4132b7188a686cc9e4 (patch) | |
tree | 19fa3a22f0ab1ce323bb2bfd787ffc86627196be /linuxthreads/sysdeps/pthread/pthread.h | |
parent | 91cc83ff9745491a0d6673f36df9cdabd397d748 (diff) | |
download | glibc-c70ca1fa69c9a95108664b4132b7188a686cc9e4.tar glibc-c70ca1fa69c9a95108664b4132b7188a686cc9e4.tar.gz glibc-c70ca1fa69c9a95108664b4132b7188a686cc9e4.tar.bz2 glibc-c70ca1fa69c9a95108664b4132b7188a686cc9e4.zip |
Update.
* sysdeps/unix/sysv/linux/powerpc/pread.c: Do not use the i386 version.
Instead call the system call wrapper function using an 64bit argument.
* sysdeps/unix/sysv/linux/powerpc/pread64.c: Likewise.
* sysdeps/unix/sysv/linux/powerpc/pwrite.c: Likewise.
* sysdeps/unix/sysv/linux/powerpc/pwrite64.c: Likewise.
Diffstat (limited to 'linuxthreads/sysdeps/pthread/pthread.h')
-rw-r--r-- | linuxthreads/sysdeps/pthread/pthread.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linuxthreads/sysdeps/pthread/pthread.h b/linuxthreads/sysdeps/pthread/pthread.h index 6d2bd0f2fa..bc6c691865 100644 --- a/linuxthreads/sysdeps/pthread/pthread.h +++ b/linuxthreads/sysdeps/pthread/pthread.h @@ -107,10 +107,10 @@ enum struct _pthread_cleanup_buffer { - void (*routine) __PMT ((void *)); /* Function to call. */ - void *arg; /* Its argument. */ - int canceltype; /* Saved cancellation type. */ - struct _pthread_cleanup_buffer *prev; /* Chaining of cleanup functions. */ + void (*__routine) __PMT ((void *)); /* Function to call. */ + void *__arg; /* Its argument. */ + int __canceltype; /* Saved cancellation type. */ + struct _pthread_cleanup_buffer *__prev; /* Chaining of cleanup functions. */ }; /* Cancellation */ |