summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/arm/bits
Commit message (Collapse)AuthorAgeFilesLines
* Fix a trivial compile problemEric Andersen2003-09-081-2/+2
|
* Some updates from glibc. mjn3 reports this fixes profilingEric Andersen2003-09-072-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.3Eric Andersen2003-06-111-8/+24
| | | | -Erik
* Initial effort at adding profiling support.Eric Andersen2003-03-036-0/+322
|
* Finish up fixing stat and setting various system types.Eric Andersen2003-01-241-1/+1
|
* Ok, people are probably going to hate me for this... This commit changes theEric Andersen2003-01-241-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_STREAMINGEric Andersen2002-10-091-0/+1
|
* Change <bits/syscall.h> to <bits/sysnum.h>.Miles Bader2002-09-052-3/+3
|
* Added __kernel_fsid_t to satisfy some apps that need it.David McCullough2002-08-271-0/+8
| | | | Definitions taken from 2.4 kernel sources for each of the platforms.
* Make bits/kernel_types.h include guard names match the includeEric Andersen2002-08-261-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 properEric Andersen2002-08-251-1/+28
| | | | | __USE_FILE_OFFSET64 handling. -Erik
* Break dependancy of bits/types.h on the asm/posix_types.h kernelEric Andersen2002-08-241-0/+29
| | | | | header, which is not directly usable for many architectures. -Erik
* Split out the definition of struct stat into the new archEric Andersen2002-08-231-0/+57
| | | | | specific bits/kernel_stat.h file. -Erik
* Support _syscall6 and _syscall7 for armEric Andersen2002-08-221-0/+17
| | | | -Erik
* Rework syscall handling. Rewrite syscall handlers for x86 and ARM.Eric Andersen2002-07-221-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 redundancyEric Andersen2002-03-0161-7483/+0
| | | | | and to better support each arch. This is a really big patch... -Erik
* Scrub up some lingering problems preventing readdir64 from workingEric Andersen2001-11-141-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.4Eric Andersen2001-10-172-121/+117
|
* This header file was broken, breaking signal handling on ARM.Eric Andersen2001-10-171-10/+66
| | | | | This update fixes it... -Erik
* Patch from David McCullough <davidm@lineo.com>:Eric Andersen2001-10-041-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_* junkEric Andersen2001-09-271-146/+1
|
* Finish syncing up armEric Andersen2001-09-2723-0/+3315
|
* Update to accomodate the header file changesEric Andersen2001-09-2745-611/+955
|
* Added __BEGIN_DECLS and __END_DECLS to the files that didn't haveDavid McCullough2001-07-116-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 ARMEric Andersen2001-07-032-196/+1
| | | | -Erik
* Add syscalls.h for ARMEric Andersen2001-06-301-0/+119
|
* Yes... I forgot to update bits/dirent.h for the other archs. :-(Manuel Novoa III2001-06-271-2/+11
|
* These are needed for arm to compileEric Andersen2001-05-262-0/+181
|
* These seem to be missing alsoEric Andersen2001-05-123-0/+401
|
* This file was missing on armEric Andersen2001-05-121-0/+209
|
* Add missing header file for armEric Andersen2001-05-121-0/+93
|
* Change FILENAME_MAX to be only 255. Max filename on ext2 is 255,Eric Andersen2001-05-071-1/+1
| | | | | | | so there is no reason to allocate 4k. Change working of execvep.c per patch from Matthias Kilian <kili@outback.escape.de> so that there is not a fixed 127 byte buffer. Too easy to overflow... -Erik
* These are needed for arm ld.so support (not at all working yet...)Eric Andersen2001-04-242-0/+73
| | | | -Erik
* Remove all the __THROW macrosEric Andersen2001-04-192-2/+2
|
* Fix include/errno.h to not use kernel header, and instead use bits/errno.h.Eric Andersen2001-04-061-0/+60
| | | | | | | This required we use _LIBC instead of __LIBC__ to be consistent with glibc. This had some sideffects in sys/syscalls.h. While fixing things, I made everything use __set_errno() for (eventual) thread support. -Erik
* It seems ARM 2.4.x kernels do not have iopl. Also add missingEric Andersen2001-03-301-0/+87
| | | | | bits/sem.h for ARM so everything now compiles and runs. -Erik
* Clean up atexit.c; make sure sysconf and atexit agree; link in ref'd libgcc.aManuel Novoa III2001-01-251-1/+4
| | | | objects with shared uClibc; allow disabling long long support.
* Facelist/cleanup for several syscalls. Added poll.Eric Andersen2001-01-161-0/+51
|
* Fix termios handling. Now synced with behavior of GNU libc.Eric Andersen2001-01-151-0/+212
| | | | -Erik
* Seems I forgot these...Eric Andersen2000-12-302-0/+518
|
* Need these includes, so add 'em.Eric Andersen2000-10-302-0/+134
|
* Remove some minor glibc'isms.Eric Andersen2000-10-262-3/+3
|
* Add in arm specific bits.Eric Andersen2000-10-2632-0/+2909