| Commit message (Expand) | Author | Age | Files | Lines |
* | Retire hp300, mvme68k and mvme88k ports. These ports have no users, keeping |  miod | 2014-03-18 | 100 | -4130/+0 |
* | match what hppa is doing now (not tested, but should be right) |  deraadt | 2014-01-10 | 1 | -5/+1 |
* | correct argument handling; this has been broken since to beginning |  deraadt | 2014-01-10 | 1 | -3/+2 |
* | Remove #ifdef _REENTRANT code that isn't used here. These days, the code |  kettenis | 2013-12-31 | 2 | -33/+2 |
* | yup, we do ELF |  deraadt | 2013-12-24 | 1 | -6/+1 |
* | 1 << 31 cleanup. Eitan Adler pointed out that there has been a |  deraadt | 2013-11-26 | 2 | -8/+8 |
* | bring in math.h to provide prototypes |  deraadt | 2013-11-13 | 3 | -3/+6 |
* | add proto for amd64 case; unify otherwise |  deraadt | 2013-11-12 | 2 | -3/+5 |
* | Remove the `let's zero %r2 if %r3 is nonzero' dance. It's been more than 10 |  miod | 2013-09-08 | 1 | -10/+2 |
* | VAX ELF userland bits. Consists mostly of register prefix additions. |  miod | 2013-07-05 | 35 | -338/+354 |
* | bcopy (and family) can check for 0 length, but negative lengths should |  deraadt | 2013-06-11 | 1 | -3/+3 |
* | On second thought, do not use a tcnd instruction to test for divide-by-zero, |  miod | 2013-06-05 | 4 | -9/+17 |
* | ...also add __modsi3 and __umodsi3, and make these symbols weak by default. |  miod | 2013-06-05 | 5 | -4/+112 |
* | Add __divsi3 and __udivsi3 gcc-compatible routines. Not used by anything yet |  miod | 2013-06-05 | 3 | -6/+93 |
* | Do a PC-relative relocation for _map rather than going through |  martynas | 2013-04-23 | 1 | -2/+2 |
* | Fix obviously stupid bug in the PIC_{LOAD,STORE} macros when compiling with |  miod | 2013-04-11 | 1 | -3/+3 |
* | Switch libc and libm to use strong aliases rather than weak aliases |  martynas | 2013-03-28 | 16 | -93/+38 |
* | Userland bits for m68k/ELF. Mostly addition of register prefixes to the |  miod | 2013-02-02 | 78 | -610/+637 |
* | Oops, due to the way return from system calls work, we can not use a delay |  miod | 2013-01-24 | 2 | -6/+16 |
* | The kernel sources mention that the system call entry point is trap #450; the |  miod | 2013-01-23 | 9 | -19/+19 |
* | Fix PIC_LOAD and PIC_STORE macros to really access the variable, instead of |  miod | 2013-01-20 | 1 | -5/+7 |
* | PIC-related code should follow the #ifdef __PIC__ line, not the #else line. |  miod | 2013-01-20 | 3 | -14/+14 |
* | Remove machine-dependent glue for strtorQ, since hppa64 quad-precision |  martynas | 2013-01-13 | 2 | -47/+2 |
* | Add END() directives to the various functions. |  miod | 2013-01-11 | 20 | -31/+142 |
* | Add a bunch of macros to help writing PIC code for libc .S routines. Handles |  miod | 2013-01-11 | 1 | -10/+42 |
* | fix __cerror non-weak symbol name |  miod | 2013-01-08 | 1 | -2/+2 |
* | Switch m88k ports to ELF. |  miod | 2013-01-05 | 28 | -319/+319 |
* | Actually invoke the system call in libc's sigreturn() wrapper; went unnoticed |  miod | 2012-12-26 | 1 | -4/+3 |
* | Make sure the stack is 16-byte aligned otherwise the use of certain SSE |  kettenis | 2012-12-22 | 1 | -1/+4 |
* | Remove excessive sys/cdefs.h inclusion |  deraadt | 2012-12-05 | 25 | -46/+29 |
* | Add two missing quad-precision emulation functions: _Qp_cmp and _Qp_cmpe. At |  kettenis | 2012-12-03 | 1 | -9/+12 |
* | Adapt ieee.h, gdtoa and libc to the fact that we don't have 80-bit |  martynas | 2012-09-15 | 9 | -239/+3 |
* | Add support for -fPIC |  deraadt | 2012-09-04 | 5 | -8/+61 |
* | remove lint leftovers; ok guenther@ |  okan | 2012-09-04 | 16 | -41/+16 |
* | these are no longer used; ok guenther |  deraadt | 2012-09-04 | 8 | -366/+0 |
* | Make this __STDC__ aware. |  miod | 2012-09-01 | 1 | -1/+8 |
* | Fix missing PIC -> __PIC__ conversions; ok pascal |  deraadt | 2012-08-22 | 4 | -10/+10 |
* | Convert cpp | as rules in bsd.lib.mk and lib/libc/sys/Makefile.inc to pure cc |  pascal | 2012-08-22 | 63 | -149/+149 |
* | Fix almost ten-years old bug in siglongjmp(), which would not restore a signal |  miod | 2012-08-12 | 3 | -87/+57 |
* | adapt the NetBSD code to make sigpending work on sh |  jsg | 2012-07-03 | 1 | -2/+6 |
* | The kernel returns the pending set; this stub has to save it through |  guenther | 2012-07-01 | 1 | -4/+8 |
* | make this actually work |  kettenis | 2012-07-01 | 1 | -23/+21 |
* | Do not use <machine/float.h>, that is an deformed BSD-ism. |  deraadt | 2012-06-25 | 9 | -18/+18 |
* | __tfork() needs to set the stack address of the new thread in the kernel, |  guenther | 2012-06-21 | 14 | -125/+72 |
* | rely on the compiler giving us a built-in alloca. any new architecture |  deraadt | 2012-04-19 | 11 | -219/+14 |
* | alloca.c cannot be used |  deraadt | 2012-04-12 | 13 | -34/+12 |
* | remove rfork(); ok guenther miod |  deraadt | 2012-04-12 | 15 | -556/+0 |
* | Mark outermost frame such that backtraces in thread terminate at |  kettenis | 2012-04-11 | 1 | -2/+3 |
* | Provide __tfork_thread() for hppa64. This makes libc compile again. |  jsing | 2012-04-11 | 1 | -0/+57 |
* | Move __tfork_thread() from rthreads (libpthread) to libc so that |  guenther | 2012-03-22 | 13 | -0/+921 |