summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/v850
Commit message (Collapse)AuthorAgeFilesLines
* no more cvsMike Frysinger2005-02-121-1/+0
|
* merge parallel build supportMike Frysinger2005-01-251-6/+5
|
* Patch from Peter S. Mazinger to consistantly use "ASFLAGS"Eric Andersen2004-12-221-5/+5
| | | | as the flags for all calls to 'as'
* __data_start needs to be added to all crt0.S files that don't currentlyEric Andersen2004-05-141-2/+11
| | | | have it. It is used by the boehm gc, amoung other things.
* 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
* Use 'mmap.c' instead of '_mmap.c'Eric Andersen2004-02-051-2/+2
|
* Split up syscalls.c, since it had grown to be quite large and ugly.Eric Andersen2004-01-211-0/+0
| | | | -Erik
* Remove SAFECFLAGS. It was a workaround for failures in old awk scriptEric Andersen2003-11-221-7/+2
| | | | | | | | | | used to generate the crti.S and crtn.S files. Since we don't use that anymore, keeping the workaround makes no sense. Furthermore, in most cases, SAFECFLAGS was not picking up all the needed flags, causing crti.o and crtn.o to not be built PIC. Which is very bad. Removing SAFECFLAGS and using CFLAGS fixes that as well.
* Darn. Fix compilation for soft-float, which I inadvertantlyEric Andersen2003-11-081-0/+4
| | | | broke a couple of days ago. :-(
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+77
|
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-2/+2
| | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
* Initial effort at adding profiling support.Eric Andersen2003-03-032-0/+40
|
* Reserve stack space for args we pass to __uClibc_main.Miles Bader2003-02-211-2/+3
|
* Add back in PTRACE_SINGLESTEP.Miles Bader2003-02-201-3/+7
| | | | Use decimal instead of hex to agree with common/sys/ptrace.h.
* Pass CHILD_STACK argument to system call (it possibly worked before `byMiles Bader2003-02-101-3/+5
| | | | accident', as the function argument is in the same register).
* Correct license.Miles Bader2003-01-312-6/+6
|
* 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
* Update architecture specific support to consistantlyEric Andersen2003-01-231-10/+5
| | | | | | generate a crt0 and crt1 file. Most arches still need to be updated to call __uClibc_start_main() rather than __uClibc_main().
* Initial checkinMiles Bader2002-12-182-0/+184
|
* whitespaceMiles Bader2002-12-181-0/+1
|
* (SSRC): Rename longjmp.S to __longjmp.SMiles Bader2002-12-181-2/+2
| | | | (CSRC): Add clone.c
* Rename longjmp.S to __longjmp.SMiles Bader2002-12-181-8/+2
| | | | Remove extra weak symbols defined by ../common/longjmp.c
* Support O_STREAMINGEric Andersen2002-10-091-0/+1
|
* Change <bits/syscall.h> to <bits/sysnum.h>.Miles Bader2002-09-054-8/+8
|
* 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
|
* (CSRC): Add syscall.cMiles Bader2002-08-141-1/+1
|
* Initial checkin.Miles Bader2002-08-141-0/+43
|
* 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
* Don't bother zeroing BSS, since actually we _can_ rely on the loader to do it.Miles Bader2002-04-251-10/+1
|
* Just tail-call __uClibc_main. There's no real point to calling abort ifMiles Bader2002-04-171-4/+2
| | | | exit failed, and abort drags in some unecessary grot.
* (L_dummy_main_reference): Reference the C symbol `main', not the linkerMiles Bader2002-04-151-5/+4
| | | | symbol `main'.
* Manuel and I were looking into a problem with applications failing to linkEric Andersen2002-04-141-0/+7
| | | | | | | | | | (undefined reference to `main') when the .o file containing main was contained in an static library(a '.a' ar archive). It turns out that due to its single pass nature, GNU ld was failing to pull it into the build. This sticks a dummy reference to main() into crt0.o, so that when an application is linked with the main() function in a static library, we can be sure that main() actually gets linked in. -Erik
* Remove v850-specific versions of truncate64.c and ftruncate64.c.Miles Bader2002-04-101-1/+1
|
* Generic implemention works for v850 now, so we don't need a special version.Miles Bader2002-04-102-67/+0
|
* Build our own crti.o and crtn.o with a cross arch method that IEric Andersen2002-03-131-1/+1
| | | | | can live with much better the what glibc does. -Erik
* Initial checkinMiles Bader2002-03-052-0/+135
|
* 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
|
* Move syscall.h generation to the top level MakefileEric Andersen2002-03-011-1/+0
| | | | -Erik
* Patch from Miles Bader to allow Large File support on the v850.Eric Andersen2002-03-013-3/+70
|
* 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