Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | *: remove some __libc_XXX functions: | Denis Vlasenko | 2008-12-10 | 1 | -4/+4 |
| | | | | | | | | | | | | __libc_accept __libc_close __libc_connect __libc_creat __libc_creat64 __libc_fsync __libc_lseek __libc_lseek64 __libc_msync __libc_nanosleep __libc_open __libc_open64 __libc_pause __libc_read __libc_readv __libc_recv __libc_recvfrom __libc_recvmsg __libc_send __libc_sendmsg __libc_sendto __libc_tcdrain __libc_wait __libc_waitpid __libc_write __libc_writev They were removed from glibc 1 May 2004: http://sources.redhat.com/ml/libc-hacker/2004-05/msg00001.html | ||||
* | - trim superfluous ';'. No objcode changes | Bernhard Reutner-Fischer | 2008-10-28 | 1 | -2/+2 |
| | |||||
* | - remove superfluous ';'. No objcode changes. | Bernhard Reutner-Fischer | 2008-10-22 | 1 | -4/+4 |
| | |||||
* | - fix inline keyword | Bernhard Reutner-Fischer | 2008-07-23 | 1 | -2/+2 |
| | |||||
* | - Fix compilation for mips ABI64 with no LFS. | Bernhard Reutner-Fischer | 2007-09-30 | 1 | -2/+6 |
| | |||||
* | sort out a few issues that show up on mips | Eric Andersen | 2006-12-12 | 1 | -22/+30 |
| | |||||
* | Take Mike Frysinger's comments into account -- make certain that user | Eric Andersen | 2006-12-08 | 1 | -1/+1 |
| | | | | | applications stop using _syscall#() and use syscall() instead. Cleanup internal handling of syscall includes to use the correct header file. | ||||
* | mips64 patch from Atsushi Nemoto: | Eric Andersen | 2006-11-04 | 1 | -8/+19 |
| | | | | | No pread64, pwrite64 syscall for N64 ABI. Make __libc_pread and __libc_pread64 use same syscall. | ||||
* | Add some prototypes to arch specific pread_write.c, mips has __mips64 ↵ | Peter S. Mazinger | 2006-01-27 | 1 | -0/+4 |
| | | | | questionable ifdefs | ||||
* | Convert all the strong_aliases to weak that are cancelable in libpthread | Peter S. Mazinger | 2006-01-24 | 1 | -4/+4 |
| | |||||
* | Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵ | Peter S. Mazinger | 2006-01-22 | 1 | -26/+13 |
| | | | | is a useless attempt | ||||
* | make DODEBUG=y happy, update sysdeps/common/* copyright | Peter S. Mazinger | 2006-01-14 | 1 | -16/+5 |
| | |||||
* | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | 2006-01-14 | 1 | -4/+4 |
| | | | | missing headers, other jump relocs removed | ||||
* | This fixes the pread/pwrite bugs reported by ltp. But I really need to pull ↵ | Manuel Novoa III | 2005-07-31 | 1 | -2/+2 |
| | | | | in the latest glibc stuff. | ||||
* | Fix mips bug related to 2.6 headers by following glibc's lead. Based on | Manuel Novoa III | 2004-08-10 | 1 | -0/+15 |
| | | | | the comment, newer kernels appended "64" to __NR_pread and __NR_pwrite. | ||||
* | Oops! I broke pread on mips with my last update. This | Eric Andersen | 2003-09-08 | 1 | -4/+4 |
| | | | | | fixes it again so it both compiles and works, -Erik | ||||
* | Fix some more problems found by the ltp | Eric Andersen | 2003-09-07 | 1 | -6/+9 |
| | |||||
* | Patch from Atsushi Nemoto, who writes: | Eric Andersen | 2003-08-22 | 1 | -0/+94 |
I found that current pread/pwrite is broken on mips. On mips, kernel needs 6 arguments for pread/pwrite system call. (3 words for first 3 arguments + 1 padding word + 2 words for last 64bit argument). Also, mips64 kernel needs just 4 arguments so no wrapper will be required. This is a patch against 0.9.20. |