summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/arm/bits
Commit message (Collapse)AuthorAgeFilesLines
* Sync kernel_stat64 with kernel. Thanks to Daniel Jacobowitz for hints.Khem Raj2007-03-081-7/+2
|
* Fix compiler warning about shadowed declaration.Khem Raj2007-03-011-20/+20
|
* Take Mike Frysinger's comments into account -- make certain that userEric Andersen2006-12-081-5/+0
| | | | | applications stop using _syscall#() and use syscall() instead. Cleanup internal handling of syscall includes to use the correct header file.
* bits/kernel_stat.h is for internal uClibc use only, fix a few otherEric Andersen2006-12-061-0/+4
| | | | minor include file issues
* Add mmap function needed for ARM EABI and define thumb specific ↵Khem Raj2006-10-071-0/+23
| | | | INTERNAL_SYSCALL macro which saves r7 before making the call and pops it back after return.
* Fix from Joseph Myers: Save and restore iWMMXt registers in ARM setjmp/longjmpKhem Raj2006-08-311-1/+1
|
* fix from psm: enable readahead prototypeMike Frysinger2006-08-241-1/+3
|
* fixups from psm for ASSEMBLER handlingMike Frysinger2006-08-241-20/+21
|
* fix from psm: just use common resource.hMike Frysinger2006-08-241-209/+0
|
* s/ifdef ASM/ifndef ASM/ as point out by psmMike Frysinger2006-08-241-1/+1
|
* sync with psm: update errno handling to be the same on all archesMike Frysinger2006-08-231-7/+5
|
* sync with upstream via psmMike Frysinger2006-08-234-90/+97
|
* bits/profil-counter.h and bits/atomicity.h are leftovers from the old gprofEric Andersen2006-08-212-157/+0
| | | | | based profiling I nuked ages ago since tools like oprofile are non invasive and work so much better.
* Update ARM EABI kernel interface due to layout and size of struct stat64."Steven J. Hill"2006-06-241-0/+4
|
* sync with glibcMike Frysinger2006-04-211-6/+12
|
* sync with glibcMike Frysinger2006-03-291-3/+17
|
* John Bowler writes in Bug 385:Mike Frysinger2006-01-311-0/+27
| | | | | | | This is a work round for a fairly serious GCC compiler bug - when the syscall assembler overwrites r7 (required on thumb) the compiler fails to protect the register when it is using it as a frame pointer.
* Patch by Joseph S. Myers to add support for ARM EABIMike Frysinger2006-01-292-3/+42
|
* rename _sys_result var to get rid of shadow warningsMike Frysinger2006-01-291-5/+5
|
* Allow for targets that don't know about signed zero floats."Jan-Benedict Glaw"2006-01-261-0/+3
|
* Change to sane defaultsPeter S. Mazinger2006-01-191-5/+10
|
* move a bunch of arch-specific checks out of common files and into an arch ↵Mike Frysinger2006-01-191-0/+33
| | | | specific header file to make porting/updates a lot easier
* define MREMAP_FIXEDMike Frysinger2005-11-271-0/+1
|
* update copyright and license, add _BITS_SETJMP_H protection around the file, ↵Mike Frysinger2005-11-161-1/+5
| | | | make sure we are only included by setjmp.h and pthread.h, and fix casting of address/jumpbugf in _JMPBUF_UNWINDS
* add support for cirrus maverick fpu using patch for glibc ↵Mike Frysinger2005-11-103-1/+46
| | | | http://yann.poupet.free.fr/ep93xx/
* sync with glibcMike Frysinger2005-11-101-5/+4
|
* import thumb support from jbowler in Bug 385Mike Frysinger2005-08-151-0/+33
|
* import thumb support from jbowler in Bug 385Mike Frysinger2005-08-141-0/+16
|
* whitespace itMike Frysinger2005-08-041-4/+5
|
* yvasilev writes in Bug 235:Mike Frysinger2005-08-041-1/+8
| | | | | | | uClibc uses wrong word order in vfp floating point arithmetic. I found this using my modification to N. Pitre's soft-float gcc patch, but this modifications were made just to allow gcc to compile code for armv4l, while nothing about fp arithmetic was changed.
* remove outdated comment and announce support for nanosecondsMike Frysinger2005-07-291-2/+2
|
* rip out previous armeb old-stat abi compat code since arm linux opinion is ↵Mike Frysinger2005-07-171-16/+2
| | | | that the old stat.h abi was for little endian only ... people should use this patch to fix their armeb kernels: http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=863/1
* make sure the stat64 struct is packed to prevent further ABI headaches as ↵Mike Frysinger2005-07-161-1/+1
| | | | done in mainline 2.6
* with the help of John Bowler, track down the ugly ABI change between 2.4 / ↵Mike Frysinger2005-07-161-4/+28
| | | | 2.6 on big endian arm kernels and work around it best we can at runtime
* import armeb fixes as outlined by John BowlerMike Frysinger2005-07-041-0/+8
|
* whitespace tweak, dont mind meMike Frysinger2005-06-251-21/+20
|
* change the old pads to the new nano sec fieldsMike Frysinger2005-06-111-6/+6
|
* no more cvsMike Frysinger2005-02-121-1/+0
|
* Kill off all support for 'gcc -pg' / 'gprof' style profiling. There is both aEric Andersen2004-08-211-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 filesEric Andersen2004-07-301-31/+0
|
* Cope with gcc 3.4's more aggressive persuit of attribute unusedEric Andersen2004-04-201-3/+3
|
* Sigh. The 2.6.x kernel removed '__kernel_dev_t' and renamed it asEric Andersen2004-02-061-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 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
|