summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/v850/bits
Commit message (Collapse)AuthorAgeFilesLines
* no more cvsMike Frysinger2005-02-121-1/+0
|
* 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
* Initial effort at adding profiling support.Eric Andersen2003-03-032-0/+40
|
* Correct license.Miles Bader2003-01-311-3/+3
|
* Add multiple-include protection.Miles Bader2003-01-271-0/+4
|
* Ok, people are probably going to hate me for this... This commit changes theEric Andersen2003-01-241-42/+2
| | | | | | | | | | | | | | | 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
* whitespaceMiles Bader2002-12-181-0/+1
|
* Support O_STREAMINGEric Andersen2002-10-091-0/+1
|
* Change <bits/syscall.h> to <bits/sysnum.h>.Miles Bader2002-09-052-4/+4
|
* Redo stat structures (kernel changed too).Miles Bader2002-08-301-77/+66
|
* Add __kernel_ino64_t.Miles Bader2002-08-301-4/+2
| | | | Make __kernel_loff_t unconditional.
* Fix a silly bug notices by Ronald Wahl <rwa@peppercon.com>Eric Andersen2002-08-281-1/+0
|
* Make sure that bits/syscalls.h always includes bits/syscall.hEric Andersen2002-08-271-0/+5
| | | | -Erik
* 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.
* Oops. I got the include guard wrong. Fix it per currentEric Andersen2002-08-261-3/+3
| | | | | value in include/asm-v850/posix_types.h on cvs.uclinux.org -Erik
* Make bits/kernel_types.h include guard names match the includeEric Andersen2002-08-261-0/+4
| | | | | | | 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
* Initial checkin.Miles Bader2002-08-262-0/+150
|
* Rework syscall handling. Rewrite syscall handlers for x86 and ARM.Eric Andersen2002-07-221-4/+9
| | | | | | 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
* Re-add files which were mistakenly deleted during the big bits/ update.Miles Bader2002-03-058-0/+521
|
* Remove extraneous fileMiles Bader2002-03-051-10/+0
|
* Remove generated stuff, restore sh/sys/procfs.h from M. R. BrownEric Andersen2002-03-021-0/+1
|
* Major rework of the include files to eliminate redundancyEric Andersen2002-03-0167-8309/+0
| | | | | and to better support each arch. This is a really big patch... -Erik
* Be consistant about the ways in which asm/unistd.h mightEric Andersen2002-02-041-1/+7
| | | | | | be included to avoid gratuitous conflicts... This is a hack till we have proper _syscall macros for all archs. -Erik
* A very large patch from Miles Bader <miles@lsi.nec.co.jp> to bringEric Andersen2001-12-2163-1067/+1722
| | | | | v850 back into working condition. Thanks Miles! -Erik
* Scrub up some lingering problems preventing readdir64 from workingEric Andersen2001-11-141-0/+3
| | | | | | and creating several *64 problems, particualrly when client apps used -D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64. All better now. -Erik
* Patch from Miles Bader <miles@lsi.nec.co.jp> to support the v850.Eric Andersen2001-10-1168-0/+7665
He sent this patch to me a month ago, but I forgot to apply it...