Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-06-27 | oops. Fix the name so it is "mmap64", not "__mmap64" | Eric Andersen | |
2003-06-27 | Actually, some arches do support _syscall6, so implement a generic version | Eric Andersen | |
for them... -Erik | |||
2003-06-27 | Mention that the common mmap64 is a stub and must be overridden | Eric Andersen | |
on a per arch basis using platform specific code | |||
2003-06-27 | Add missing madvise syscall | Eric Andersen | |
2003-06-16 | As noted by Peter S. Mazinger | Eric Andersen | |
After removal of stropts.h none of the files references bits/stropts.h, so it can be removed. Peter | |||
2003-05-08 | (__libc_open): Fix wacky indentation. | Miles Bader | |
2003-04-29 | Fixup __libc_open to use varargs and match the prototype. | David McCullough | |
On the H8 varargs are rather unusual and if you declare a function with varargs, it had better use them or it won't work. | |||
2003-03-11 | sjhill needs to buy donuts for everyone | Eric Andersen | |
2003-03-11 | Compliance with MIPS ABI and MIPS kernel changes. | "Steven J. Hill" | |
2003-03-07 | Patch from Stefan Allius: | Eric Andersen | |
fix a couple of gcc 3.3 compiler warnings in gmon.c | |||
2003-03-05 | Default to using fork() for vfork() when no arch specific | Eric Andersen | |
implementation of vfork is present. | |||
2003-03-03 | Initial effort at adding profiling support. | Eric Andersen | |
2003-03-02 | cut-n-paste strikes again | Eric Andersen | |
2003-03-02 | Add missing alias __modify_ldt | Eric Andersen | |
2003-02-27 | Major update for pthreads, based in large part on improvements | Eric Andersen | |
from glibc 2.3. This should make threads much more efficient. -Erik | |||
2003-02-18 | Fixup ioctl so we can special case powerpc silliness | Eric Andersen | |
2003-02-17 | Using -g when doing the initfini compilation breaks the SH4 case pretty | David McCullough | |
badly. I have removed -g for all platforms as I suspect no one wants it for the initfini creation process. | |||
2003-02-15 | Add missing ';'s so powerpc will compile | Eric Andersen | |
2003-02-15 | Fix a _ton_ of system call user type/kernel type translation | Eric Andersen | |
problems, causing user space to get scrambled hosed up results. -Erik | |||
2003-02-10 | We need to have the size of struct dirent equal to the size of struct dirent64 | Eric Andersen | |
so when _FILE_OFFSET_BITS=64 (such that we transparently change 32bit into 64 bit interfaces), we will not lose an unsigned char from d_name which silently becomes the d_type field instead. oops. -Erik | |||
2003-02-03 | Fixup compile on 2.2.x kernels when UCLIBC_HAS_LFS is enabled | Eric Andersen | |
2003-01-30 | Use correct names for dummy crti.o/crtn.o files. | Miles Bader | |
2003-01-29 | Create stub crti.o and crtn.o files when UCLIBC_CTOR_DTOR is disabled | Eric Andersen | |
-Erik | |||
2003-01-28 | Fix scandir64 to not free the wrong pieces of memory (which could | Eric Andersen | |
and did cause segfaults) by adjusting the working scandir.c to the the 64 thing. Fix up potential for mismatches between the libc and kernel dirent structures, which could also cause ugly problems. -Erik | |||
2003-01-28 | Patch from Stefan Allius to fix the build when | Eric Andersen | |
large file support is disabled | |||
2003-01-24 | Finish up fixing stat and setting various system types. | Eric Andersen | |
2003-01-24 | I thought it would be smaller to inline since these funcs are small. | Eric Andersen | |
Well, not inlining saves 300 bytes, so do that instead. -Erik | |||
2003-01-24 | Ok, people are probably going to hate me for this... This commit changes the | Eric Andersen | |
type of 'struct stat' and 'struct stat64' so they use consistant types. This change is the result of a bug I found while trying to use GNU tar. The problem was caused by our using kernel types within struct stat and trying to directly compare these values with standard types. Trying an 'if (a < b)' when 'a' is an 'unsigned long' and 'b' is an 'int' leads to very different results then when comparing entities of the same type (i.e. time_t values).... Grumble. Nasty stuff, but I'm glad I got this out of the way now. As a result of this fix, uClibc 0.9.17 will not be binary compatible with earlier releases. I have always warned people this can and will happen. -Erik | |||
2003-01-23 | Update architecture specific support to consistantly | Eric Andersen | |
generate a crt0 and crt1 file. Most arches still need to be updated to call __uClibc_start_main() rather than __uClibc_main(). | |||
2003-01-23 | Update ignore list | Eric Andersen | |
2003-01-23 | Cleanup makefiles and make clean a bit | Eric Andersen | |
2003-01-22 | Update sigaction syscall names to act more like glibc. Fix the x86 sigaction | Eric Andersen | |
implementation such that gdb can actually debug signal handlers. Gdb behaves much better now, for example, on multi-threaded apps. -Erik | |||
2003-01-22 | Missed an endif | Eric Andersen | |
2003-01-22 | Looks like sigaction on arm needs adjustment, so split this into | Eric Andersen | |
a common header file and a default implementation. | |||
2002-12-20 | The big thing is locale dependent collation support. | Manuel Novoa III | |
Also added outdigit support and (legacy) YESSTR/NOSTR support. | |||
2002-12-12 | Based on discussions with Stefan Allius, change it so that we always | Eric Andersen | |
build a crt0.o and a crt1.o. crt1.o will support ctors and dtors if such support is enabled. One more gratuitous toolchain support issue is thereby removed... -Erik | |||
2002-12-11 | Remove trailing comma from enum list as a nicety for older compilers. | Manuel Novoa III | |
2002-12-04 | Fix the other instance of getcwd | Eric Andersen | |
2002-12-04 | Properly allocate memory when size is 0, but so is buf | Eric Andersen | |
2002-11-27 | Make support for global constructors and global destructors be | Eric Andersen | |
configurable, so people who do not need or want ctor/dtor support can disable it and make their binaries a little bit smaller. -Erik | |||
2002-11-22 | Ok... here's the summary: | Manuel Novoa III | |
Hopefully locale support will build when cross compiling now. Collation is still not supported, but that's what I'm currently working on. In the next couple of days, I'll probably put up a couple of files for download that will save people the trouble of generating all the glibc locales. Added *wprintf functions, although they currently don't support floating point. That will be fixed when I rewrite _dtostr... or possibly before. Added the wcsto{inttype} functions. Added iconv() and a mini iconv utility. The require locale support and only provide for conversions involving the various unicode encodings { UCS-4*, UCS-2*, UTF-32*, UTF-16*, UTF-8 }, the 8-bit codesets built with the locale data, and the internal WCHAR_T. | |||
2002-11-15 | Cleanup a few structural wierdnesses | Eric Andersen | |
2002-11-15 | Fix it for real this time. | Eric Andersen | |
2002-11-15 | Doh! I screwed that one all up. Lets try that again... | Eric Andersen | |
-Erik | |||
2002-11-14 | Minor cleanup | Eric Andersen | |
-Erik | |||
2002-11-14 | Implement sendfile64 | Eric Andersen | |
-Erik | |||
2002-11-05 | Patch from Stefan Allius. Include CPU_CFLAGS when compiling | Eric Andersen | |
initfini | |||
2002-11-04 | Oops. Fix compilation on arm. | Eric Andersen | |
-Erik | |||
2002-11-03 | Implement locale-specific grouping in printf for base 10 integer conversions | Manuel Novoa III | |
when the grouping flag "'" is specified. Grouping for floating point values may wait until I do a rewrite of the floating pt to string code... | |||
2002-11-03 | Another update to initfini.awk and initfini.c from Stefan Allius | Eric Andersen | |
to hopefully address SH wierdness. Now works on other architecture properly as well. |