Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | These are already unwired in kernel headers so dont worry about them in uclibc | Khem Raj | 2008-07-17 | 1 | -18/+0 |
| | |||||
* | Undefine some of redundant syscalls not used by EABI kernels. So uclibc ↵ | Khem Raj | 2008-07-14 | 1 | -0/+18 |
| | | | | | | could use alternative implementations for them. include sys/syscalls.h in pt-gettimeofday.c | ||||
* | Do not use push/pop in inline asm. It breaks unwinding | Khem Raj | 2008-07-10 | 1 | -6/+10 |
| | |||||
* | Synch libc powerpc/arm/sh64/m68k/alpha/microblaze/i960/vax/e1 specific with ↵ | Carmelo Amoroso | 2008-06-18 | 6 | -111/+196 |
| | | | | trunk | ||||
* | Merge from trunk. | "Steven J. Hill" | 2006-12-16 | 4 | -27/+52 |
| | |||||
* | When you delete a '1' does it become '0' or tri-stated? | "Steven J. Hill" | 2006-12-16 | 1 | -209/+0 |
| | |||||
* | Big fricking merge from trunk, but an easy one. | "Steven J. Hill" | 2006-08-24 | 5 | -98/+103 |
| | |||||
* | Removal as per trunk. | "Steven J. Hill" | 2006-08-22 | 2 | -157/+0 |
| | |||||
* | Merge from trunk. | "Steven J. Hill" | 2006-08-18 | 3 | -9/+33 |
| | |||||
* | Merge from trunk. | "Steven J. Hill" | 2006-02-28 | 3 | -8/+115 |
| | |||||
* | Merge from trunk. | "Steven J. Hill" | 2005-12-02 | 1 | -0/+1 |
| | |||||
* | Massive merge from trunk. | "Steven J. Hill" | 2005-11-17 | 3 | -7/+55 |
| | |||||
* | Merge/sync with trunk. | "Steven J. Hill" | 2005-08-17 | 2 | -0/+49 |
| | |||||
* | Merge from trunk. | "Steven J. Hill" | 2005-08-09 | 1 | -4/+12 |
| | |||||
* | More merges with main trunk. | "Steven J. Hill" | 2005-07-30 | 1 | -2/+2 |
| | |||||
* | A merging we will go. A merging we will go. Hi ho the merrio' a merging we ↵ | "Steven J. Hill" | 2005-07-25 | 1 | -25/+42 |
| | | | | will go. | ||||
* | no more cvs | Mike Frysinger | 2005-02-12 | 1 | -1/+0 |
| | |||||
* | Kill off all support for 'gcc -pg' / 'gprof' style profiling. There is both a | Eric Andersen | 2004-08-21 | 1 | -67/+0 |
| | | | | | | | | 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 | ||||
* | Cleanup some dead wood in the header files | Eric Andersen | 2004-07-30 | 1 | -31/+0 |
| | |||||
* | Cope with gcc 3.4's more aggressive persuit of attribute unused | Eric Andersen | 2004-04-20 | 1 | -3/+3 |
| | |||||
* | Sigh. The 2.6.x kernel removed '__kernel_dev_t' and renamed it as | Eric Andersen | 2004-02-06 | 1 | -0/+1 |
| | | | | | | | | | '__kernel_old_dev_t'. And of course there is no good way to know which is in use except checking linux/version.h. Grumble. This is rather lame, but for now, define __kernel_old_dev_t to be the same as __kernel_dev_t. This will want to be revisited soon. -Erik | ||||
* | Fix a trivial compile problem | Eric Andersen | 2003-09-08 | 1 | -2/+2 |
| | |||||
* | Some updates from glibc. mjn3 reports this fixes profiling | Eric Andersen | 2003-09-07 | 2 | -2/+23 |
| | | | | on i386, at least, so seems like a good thing. | ||||
* | Fix arm syscall implementation so it does not blow chunks with gcc 3.3 | Eric Andersen | 2003-06-11 | 1 | -8/+24 |
| | | | | -Erik | ||||
* | Initial effort at adding profiling support. | Eric Andersen | 2003-03-03 | 6 | -0/+322 |
| | |||||
* | Finish up fixing stat and setting various system types. | Eric Andersen | 2003-01-24 | 1 | -1/+1 |
| | |||||
* | Ok, people are probably going to hate me for this... This commit changes the | Eric Andersen | 2003-01-24 | 1 | -31/+3 |
| | | | | | | | | | | | | | | | 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 | ||||
* | Support O_STREAMING | Eric Andersen | 2002-10-09 | 1 | -0/+1 |
| | |||||
* | Change <bits/syscall.h> to <bits/sysnum.h>. | Miles Bader | 2002-09-05 | 2 | -3/+3 |
| | |||||
* | Added __kernel_fsid_t to satisfy some apps that need it. | David McCullough | 2002-08-27 | 1 | -0/+8 |
| | | | | Definitions taken from 2.4 kernel sources for each of the platforms. | ||||
* | Make bits/kernel_types.h include guard names match the include | Eric Andersen | 2002-08-26 | 1 | -3/+9 |
| | | | | | | | guard names used by the kernel's asm/posix_types.h to eliminate gratuitous conflicts and let our file win over the very-likely- to-be-broken kernel header file. -Erik | ||||
* | Finish off the bits/kernel_stat.h cleanup for proper | Eric Andersen | 2002-08-25 | 1 | -1/+28 |
| | | | | | __USE_FILE_OFFSET64 handling. -Erik | ||||
* | Break dependancy of bits/types.h on the asm/posix_types.h kernel | Eric Andersen | 2002-08-24 | 1 | -0/+29 |
| | | | | | header, which is not directly usable for many architectures. -Erik | ||||
* | Split out the definition of struct stat into the new arch | Eric Andersen | 2002-08-23 | 1 | -0/+57 |
| | | | | | specific bits/kernel_stat.h file. -Erik | ||||
* | Support _syscall6 and _syscall7 for arm | Eric Andersen | 2002-08-22 | 1 | -0/+17 |
| | | | | -Erik | ||||
* | Rework syscall handling. Rewrite syscall handlers for x86 and ARM. | Eric Andersen | 2002-07-22 | 1 | -100/+101 |
| | | | | | | 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 | ||||
* | Major rework of the include files to eliminate redundancy | Eric Andersen | 2002-03-01 | 61 | -7483/+0 |
| | | | | | and to better support each arch. This is a really big patch... -Erik | ||||
* | Scrub up some lingering problems preventing readdir64 from working | Eric Andersen | 2001-11-14 | 1 | -2/+4 |
| | | | | | | and creating several *64 problems, particualrly when client apps used -D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64. All better now. -Erik | ||||
* | Bring these into line with glibc 2.2.4 | Eric Andersen | 2001-10-17 | 2 | -121/+117 |
| | |||||
* | This header file was broken, breaking signal handling on ARM. | Eric Andersen | 2001-10-17 | 1 | -10/+66 |
| | | | | | This update fixes it... -Erik | ||||
* | Patch from David McCullough <davidm@lineo.com>: | Eric Andersen | 2001-10-04 | 1 | -66/+10 |
| | | | | | | | | | | | | | | * reduce the sigset types to 32 bits (I've mentioned this before) I think I saw this change go in for another platform anyway ;-) * Do not use _IO_FILE as it clashes with the C++ libraries which know too much about how glibc workds :-( * Do not use _G_va_list for the same reason. * remove the CTORS/DTORS from crt0.S for ARM as the compiler provided crtbegin.o and crtend.o have these (and only these) already in them and you get multiple defined errs :-( | ||||
* | Gut this file, and quit referrng to _IO_* junk | Eric Andersen | 2001-09-27 | 1 | -146/+1 |
| | |||||
* | Finish syncing up arm | Eric Andersen | 2001-09-27 | 23 | -0/+3315 |
| | |||||
* | Update to accomodate the header file changes | Eric Andersen | 2001-09-27 | 45 | -611/+955 |
| | |||||
* | Added __BEGIN_DECLS and __END_DECLS to the files that didn't have | David McCullough | 2001-07-11 | 6 | -1/+18 |
| | | | | | | it and that I could see needed it. Should be pretty low impact as these are only defined when using C++. | ||||
* | Autogen include/bits/syscall.h for ARM | Eric Andersen | 2001-07-03 | 2 | -196/+1 |
| | | | | -Erik | ||||
* | Add syscalls.h for ARM | Eric Andersen | 2001-06-30 | 1 | -0/+119 |
| | |||||
* | Yes... I forgot to update bits/dirent.h for the other archs. :-( | Manuel Novoa III | 2001-06-27 | 1 | -2/+11 |
| | |||||
* | These are needed for arm to compile | Eric Andersen | 2001-05-26 | 2 | -0/+181 |
| | |||||
* | These seem to be missing also | Eric Andersen | 2001-05-12 | 3 | -0/+401 |
| |