Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-01-21 | Split up syscalls.c, since it had grown to be quite large and ugly. | Eric Andersen | |
-Erik | |||
2004-01-21 | Move poll to its own file, rather than being only half in its own file | Eric Andersen | |
2004-01-21 | Massive formatting cleanup, making it easier to parse | Eric Andersen | |
2004-01-16 | s/UCLIBC_HAS_MMU/ARCH_HAS_MMU/g | Eric Andersen | |
2004-01-02 | The checking Erik added seems to be unnecessary. Without it, I am not | Manuel Novoa III | |
seeing any LTP failures. | |||
2003-12-31 | Fir errno return when the file/path is NULL or points to an empty string. | Eric Andersen | |
-Erik | |||
2003-12-31 | Add extra checks for sigprocmask and rt_sigprocmask syscalls. | Eric Andersen | |
The rt_sigprocmask syscall has broken error handling in 2.4.x kernels, while the sigprocmask syscall appears to get things right. Regardless we should be extra careful, and add these checks. | |||
2003-12-22 | In unistd.h, getpgrp() is redirected to __getpgid(), but | Eric Andersen | |
we did not have a __getpgid(). Fix that. | |||
2003-11-16 | Fix a build problem when using 2.2.x kernel headers. | Manuel Novoa III | |
2003-11-12 | Add support for missing ntp_gettime and ntp_adjtime | Eric Andersen | |
2003-11-08 | Fix up several errors related to filename length and errno that | Eric Andersen | |
showed up while running the latest LTP testsuite. -Erik | |||
2003-11-02 | Be extra careful to check uid and gid converstions to kernel types | Eric Andersen | |
2003-10-22 | Peter S. Mazinger pointed out that I missed a spot. I should | Eric Andersen | |
stop applying patches by hand... | |||
2003-10-22 | Per suggestion and patch from Ken Staton, emulates poll using | Eric Andersen | |
select for older 2.0 kernels where poll is missing. | |||
2003-09-17 | Fix fcntl64 when UCLIBC_HAS_LFS is enabled, but __NR_fcntl64 | Eric Andersen | |
is not defined. | |||
2003-09-09 | Make sure that __syscall_fcntl is extern when LFS | Eric Andersen | |
is disabled | |||
2003-09-08 | Use __libc_fork for the uClinux fork stub | Eric Andersen | |
2003-09-08 | mjn3 pointed out that my brain was not in gear.... | Eric Andersen | |
2003-09-07 | A few minor syscall cleanups | Eric Andersen | |
2003-08-22 | Don't use linux/sysctl.h and instead locally define struct __sysctl_args. | Eric Andersen | |
2003-08-20 | Correct included header for ustat. | Manuel Novoa III | |
2003-08-08 | Add support for personality(), prctl(), ustat(), and ulimit() | Eric Andersen | |
syscalls, which had managed to stay unimplemented thus far. -Erik | |||
2003-08-05 | Zou WeiJun noticed a type breaking the stime syscall | Eric Andersen | |
-Erik | |||
2003-06-27 | Add missing madvise syscall | Eric Andersen | |
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-02 | cut-n-paste strikes again | Eric Andersen | |
2003-03-02 | Add missing alias __modify_ldt | Eric Andersen | |
2003-02-18 | Fixup ioctl so we can special case powerpc silliness | Eric Andersen | |
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-03 | Fixup compile on 2.2.x kernels when UCLIBC_HAS_LFS is enabled | Eric Andersen | |
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-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-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 | |||
2002-11-15 | Cleanup a few structural wierdnesses | Eric Andersen | |
2002-11-04 | Oops. Fix compilation on arm. | Eric Andersen | |
-Erik | |||
2002-10-31 | Ok, this commit is _huge_ and its gonna change the world. I've | Eric Andersen | |
been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik | |||
2002-09-04 | Add syscalls: modify_ldt _sysctl setresuid getresuid setresgid getresgid | "Steven J. Hill" | |
2002-08-28 | Fix broken getpriority syscall, per email from Marshall M. Midden | Eric Andersen | |
-Erik | |||
2002-08-21 | Revert mode_t change. Sigh. As Manuel so eloquently put it: "this is the way | Eric Andersen | |
we hose our code... hose our code... hose our code... this is the way we hose our code... all thanks to glibc" -Erik | |||
2002-08-19 | Eliminate wrapping of struct stat and use the kernel version | Eric Andersen | |
directly. Eliminate all the attendant baggage. Fix internal types to match kernel types more closely. -Erik | |||
2002-08-09 | Fix a number of compile time warnings so that uClibc will build with -Werror ↵ | David McCullough | |
using a 3.0.4 version of the sh-linux-gcc compiler. | |||
2002-07-22 | Rework syscall handling. Rewrite syscall handlers for x86 and ARM. | Eric Andersen | |
Prepare to kill the UNIFIED_SYSCALL option and instead have it be a per arch thing that is either enabled or not for that arch. -Erik | |||
2002-07-15 | Rework pread and pwrite support so it should actually work. | Eric Andersen | |
Add support for pread64 and pwrite64. Fixup llseek a bit. -Erik | |||
2002-07-07 | Fix namespace pollution by hiding statfix and statfix64 by | Eric Andersen | |
prepending an __ to the name. Not perfect but better. -Erik | |||
2002-07-07 | Cleanup namespace leaks by prepending __ to global stuff to | Eric Andersen | |
indicate it is (alledgedly) private. -Erik | |||
2002-06-21 | Fix support for 2.0.x linux kernels. Oops. | Eric Andersen | |
-Erik | |||
2002-06-18 | Cleanup the getcwd implementation (again) since I broke it | Eric Andersen | |
last night. Restore malloc-ing when buf=NULL for the syscall version... Move getcwd to libc/sysdeps/linux/common and out of syscalls.c so there is just one getcwd.o object present. -Erik |