mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
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.
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user