Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-02-13 | x86_64 fixes: update prototype to match the other prototypes | Mike Frysinger | |
2005-02-12 | no more cvs | Mike Frysinger | |
2005-02-08 | - 2/NN patches for ssp. Updates from Peter S. Mazinger and Robert Connolly | Ned Ludd | |
2005-02-08 | - 1/NN patches for ssp | Ned Ludd | |
2005-01-25 | merge parallel build support | Mike Frysinger | |
2005-01-23 | When there is no umount syscall, but umount2 is available, then | Eric Andersen | |
try to emulate umount() using umount2() | |||
2005-01-19 | Make it compile for architectures which have __UCLIBC_HAS_LFS__ defined, | Peter Kjellerstedt | |
but neither __NR_fadvise64 nor __NR_fadvise64_64. | |||
2005-01-17 | add posix_fadvise / posix_fadvise64 support | Mike Frysinger | |
2005-01-16 | whitespace cleanup | Eric Andersen | |
2005-01-16 | Per http://bugs.uclibc.org/view.php?id=12: | Eric Andersen | |
Some newer archs only have umount2 | |||
2005-01-16 | - ifdef bdflush update from bug #0000011 | Ned Ludd | |
2005-01-16 | - ifdef uselib update from bug #0000013 | Ned Ludd | |
2005-01-11 | dont bother including sysctl.h unless we need it | Mike Frysinger | |
2005-01-06 | Justin Cormack <justin@street-vision.com> writes: | Mike Frysinger | |
Here is a small patch to add epoll support to uclibc. The only thing I am not sure about is what needs to be done (if anything) to make it work on 2.4/2.2 kernels (are the syscall numbers defined but give errors when called or not?). Tested on 2.6, though some other issues prevent more extensive testing at the minute. Mike Frysinger: cleaned up patch and added checks to make sure that the syscall actually exists, returning ENOSYS in cases where it doesn't. | |||
2005-01-05 | fix eriks e-mail address | Mike Frysinger | |
2004-12-22 | Patch from Peter S. Mazinger: | Eric Andersen | |
rename UCLIBC_PROPOLICE to UCLIBC_HAS_SSP | |||
2004-12-22 | Patch from psm, vapier, and solar, adding xattr syscalls | Eric Andersen | |
2004-12-20 | - Added support for 13 new syscalls to allow more things to compile when ↵ | Ned Ludd | |
using uClibc. mincore() and the ones for Extended Attributes setxattr(), lsetxattr(), fsetxattr(), getxattr(), lgetxattr(), fgetxattr(), listxattr(), llistxattr(), flistxattr(), removexattr(), lremovexattr(), fremovexattr() which are optional. | |||
2004-12-16 | On Thu Dec 16, 2004 at 03:49:31PM +0100, Johan Adolfsson wrote: | Eric Andersen | |
> What's the correct way of calling llseek/_llseek? > The manpage I have indicates _llseek and thats what the version of > util-linux > I tried use as well so compiling for uClibc fails. > Would the following patch fix it or is it the apps that needs fixing? | |||
2004-12-08 | Kill off ancient unused cruft | Eric Andersen | |
2004-11-25 | update : $ | Ned Ludd | |
2004-11-11 | misc cleanups of __stack_smash_handler() function when ssp support is ↵ | Ned Ludd | |
enabled. syslog() support should now work both inside and outside of chroots. erandom code left in but remains #ifdef out by default. May remove erandom completely in the future for uClibc unless the LFS guys and gals want to keep it. | |||
2004-11-11 | misc cleanups of __stack_smash_handler() function when ssp support is ↵ | Ned Ludd | |
enabled. syslog() support should now work both inside and outside of chroots. erandom code left in but remains #ifdef out by default. May remove erandom completely in the future for uClibc unless the LFS guys and gals want to keep it. | |||
2004-11-02 | struct ipc_perm, as used by shmctl() when soing shared memory stuff, | Eric Andersen | |
was incorrect in uClibc, and was 2 bytes too short. This caused uClibc shared memory stuff to not behave correctly since struct ipc_perm was included as the first member of, i.e. struct msqid_ds, so the content of that struct were all shifted by two bytes. ugh. Apparently, few people have used shared memory, msgctl(), etc with uClibc thus far, -Erik | |||
2004-10-31 | Revert Peter's __lib_gettimeofday patch. There's the minor issue of | Manuel Novoa III | |
adding cruft to include/sys/time.h. But also, there's no sense in making changes like this until we decide how we're going to approach the hidden symbol transition. | |||
2004-10-19 | Peter S. Mazinger writes: | Eric Andersen | |
Hello! Would the attached patch be acceptable (maybe instead of __libc_gettimeofday using __gettimeofday) We have some issues, see http://bugs.gentoo.org/show_bug.cgi?id=65892 | |||
2004-08-22 | Make the stub profiling stuff work | Eric Andersen | |
2004-08-21 | Attempt to support 'gcc -finstrument-functions', which seems much | Eric Andersen | |
more sane than 'gcc -pg' and seems much easier to support. -Erik | |||
2004-08-21 | Kill off all support for 'gcc -pg' / 'gprof' style profiling. There is both a | Eric Andersen | |
size and performance penalty to profiling applications this way, as well as Heisenberg effects, where the act of measuring changes what is measured. There are better tools for doing profiling, such as OProfile, that do not require gcc to instrument the application code. -Erik | |||
2004-08-20 | Enable only for architectures where __NR_madvise is defined | Eric Andersen | |
-Erik | |||
2004-08-16 | The variable used to store pagesize is not the same as the | Eric Andersen | |
_dl_pagesize variable in ldso, so avoid aliasing. -Erik | |||
2004-08-13 | Fixup PAGE_SIZE problems | Eric Andersen | |
-Erik | |||
2004-07-30 | Cleanup some dead wood in the header files | Eric Andersen | |
2004-07-30 | s/___brk_addr/__curbrk/g | Eric Andersen | |
Some utilities, such as valgrind, have a legitimate reason to know the address of the current brk. Since we know such utils will peek under our skirt, we might as well give them what they expect and not use a gratuitously different symbol name. -Erik | |||
2004-07-27 | Be certain to include sys/sysmacros.h when major() and minor() | Eric Andersen | |
are being used | |||
2004-07-21 | Fix ftruncate64 and truncate64 for powerpc and mips | Eric Andersen | |
-Erik | |||
2004-05-15 | Cope when the __NR_get_kernel_syms is undefined (i.e. 2.6.x arm-linux) | Eric Andersen | |
2004-05-13 | Add define for SHM_HUGETLB | Eric Andersen | |
2004-05-11 | make certain that getpagesize() returns correct the value for mips | Eric Andersen | |
by extracting the value from the ELF header. | |||
2004-05-07 | Patch from Yoshinori Sato <ysato@users.sourceforge.jp>. | Manuel Novoa III | |
2004-05-07 | Fix a couple of issues in configurations I hadn't tested. | Manuel Novoa III | |
2004-04-20 | Cope with gcc 3.4's more aggressive persuit of attribute unused | Eric Andersen | |
2004-04-14 | Fix typo. | Manuel Novoa III | |
2004-03-19 | Per patch from Stefan Holst, do not try to compile these | Eric Andersen | |
syscalls if they are not supported. | |||
2004-03-19 | Based on a patch from Alexandre Oliva, allow uClibc to compile | Eric Andersen | |
with __NR_mmap is not available (i.e. only __NR_mmap2) | |||
2004-03-18 | Based on a patch from Alexandre Oliva, remove all reference to 'bzero' (which | Eric Andersen | |
is not a SuSv3 symbol). Rather than using __bzero internally per Alexandre's original patch, use memset instead. | |||
2004-03-12 | Cope gracefully with missing module syscalls | Eric Andersen | |
2004-02-17 | Fixup fdatasync on alpha, thanks to Alan Hourihane | Eric Andersen | |
2004-02-11 | New stdio core. Should be more maintainable. Fixes a couple of bugs. | Manuel Novoa III | |
Codepaths streamlined. Improved performance for nonthreaded apps when linked with a thread-enabled libc. Minor iconv bug and some locale/thread related startup issues fixed. These showed up in getting a gcj-compiled java helloworld app running. Removed some old extension functions... _stdio_fdout and _stdio_fsfopen. | |||
2004-02-11 | Fix bug from the syscall reorganization, detected by python's test_poll.py. | Manuel Novoa III | |
The #ifdef __NR_poll test was failing because it was done before any includes. Hence, the emulation was always being used. NOTE: The emulation fails a couple of tests in test_poll.py! |