summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/m68k/clone.S
Commit message (Collapse)AuthorAgeFilesLines
* Richard Sandiford writes: add support for init/fini arrays in shared flat ↵Mike Frysinger2006-12-081-3/+8
| | | | libraries
* Richard Sandiford writes:Mike Frysinger2006-06-071-3/+3
| | | | | | | | | | | | | | Until a few months ago, libc/sysdeps/linux/m68k/clone.S defined __syscall_error itself. This local definition was removed in revision 13305: However, the clone code uses bcc.w to branch to __syscall_error. This made sense when there was a local definition, because the label was guaranteed to be in range. We can't guarantee that the external definition will be in range though; it depends on the order that the objects are linked. This patch adjusts clone.S to use jbcc instead.
* use __syscall_error trickMike Frysinger2006-01-141-11/+0
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-10/+3
| | | | missing headers, other jump relocs removed
* Paul Brook reports: fix build failure with newer binutilsMike Frysinger2005-11-241-4/+1
|
* Properly prefix some symbolsEric Andersen2002-11-031-4/+4
|
* Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen2002-10-311-1/+1
| | | | | | | | | | | | | | | been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik
* Add in clone and make the assembler PIC/msep-data friendly.David McCullough2002-09-171-6/+16
|
* Add in clone (untested)David McCullough2002-02-061-0/+75
Fix up setjmp/longjmp which were quite broken not withstanding all the new versions. Needs a little more test time before I'll trust this code totally.