diff options
| author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-24 15:40:32 +0000 | 
|---|---|---|
| committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-24 15:40:32 +0000 | 
| commit | 9ca46ae78954339b85bc5485fcc84354969aee34 (patch) | |
| tree | a20e6126019fed95bdbf91585565d00f9245f272 /libc/sysdeps/linux/sh/pread_write.c | |
| parent | 4a2cd146dfed0711331a6504a50635d6006c024d (diff) | |
| download | uClibc-alpine-9ca46ae78954339b85bc5485fcc84354969aee34.tar.bz2 uClibc-alpine-9ca46ae78954339b85bc5485fcc84354969aee34.tar.xz  | |
Convert all the strong_aliases to weak that are cancelable in libpthread
Diffstat (limited to 'libc/sysdeps/linux/sh/pread_write.c')
| -rw-r--r-- | libc/sysdeps/linux/sh/pread_write.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/sh/pread_write.c b/libc/sysdeps/linux/sh/pread_write.c index 437bbdaa6..0cfac24f3 100644 --- a/libc/sysdeps/linux/sh/pread_write.c +++ b/libc/sysdeps/linux/sh/pread_write.c @@ -32,7 +32,7 @@ ssize_t __libc_pread(int fd, void *buf, size_t count, off_t offset)  {   	return(__syscall_pread(fd,buf,count,0,__LONG_LONG_PAIR((off_t)0,offset)));  } -strong_alias(__libc_pread,pread) +weak_alias(__libc_pread,pread)  # ifdef __UCLIBC_HAS_LFS__   ssize_t __libc_pread64(int fd, void *buf, size_t count, off64_t offset) @@ -41,7 +41,7 @@ ssize_t __libc_pread64(int fd, void *buf, size_t count, off64_t offset)      uint32_t high = offset >> 32;  	return(__syscall_pread(fd, buf, count, 0, __LONG_LONG_PAIR (high, low)));  } -strong_alias(__libc_pread64,pread64) +weak_alias(__libc_pread64,pread64)  # endif /* __UCLIBC_HAS_LFS__  */  #endif /* __NR_pread */ @@ -63,7 +63,7 @@ ssize_t __libc_pwrite(int fd, const void *buf, size_t count, off_t offset)  {   	return(__syscall_pwrite(fd,buf,count,0,__LONG_LONG_PAIR((off_t)0,offset)));  } -strong_alias(__libc_pwrite,pwrite) +weak_alias(__libc_pwrite,pwrite)  # ifdef __UCLIBC_HAS_LFS__   ssize_t __libc_pwrite64(int fd, const void *buf, size_t count, off64_t offset) @@ -72,6 +72,6 @@ ssize_t __libc_pwrite64(int fd, const void *buf, size_t count, off64_t offset)      uint32_t high = offset >> 32;  	return(__syscall_pwrite(fd, buf, count, 0, __LONG_LONG_PAIR (high, low)));  } -strong_alias(__libc_pwrite64,pwrite64) +weak_alias(__libc_pwrite64,pwrite64)  # endif /* __UCLIBC_HAS_LFS__  */  #endif /* __NR_pwrite */  | 
