Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-03-31 | Gently cast to make lint happy. | Dale Rahn | |
2006-03-31 | Be kind to lint, and specify the correct width on these constants. | Dale Rahn | |
2005-11-29 | if we pull in a .S file, we must fake out the lint with a .c file | Theo de Raadt | |
for this first cut, we will do this for alloca() using alloca.c by adding it to LSRCS | |||
2005-08-07 | zap rcsid. | Marc Espie | |
okay deraadt@ (tested them all) | |||
2005-02-01 | Replace broken frexp() with a working one from FreeBSD. There's | Todd C. Miller | |
no need to have a copy for each platform with ieee floating point, only vax needs a special version (which probably has similar bugs). OK and with help from otto@ | |||
2004-03-01 | longjmp should not return 0, if longjmp(..., 0) is invoked return 1. | Dale Rahn | |
ok miod@ deraadt@ | |||
2003-09-01 | These files are not necessary anymore. | Miod Vallat | |
2003-07-10 | Use a logical comparison (unsigned) for pointers. ok drahn@ | Thierry Deval | |
2003-06-03 | terms 3 & 4 cleanup based on "terms" file | Theo de Raadt | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-05-02 | Add Doug Gwyn's portable alloca() for platforms w/o an assembler | Todd C. Miller | |
version. Normally, gcc provides its own alloca() (unless -fno-builtin is specified). The C version is decidedly suboptimal--we really need proper assembler versions but this will work as a stop-gap measure. | |||
2003-01-29 | Align this char array accessed as double, for paranoia reasons. | Dale Rahn | |
2002-10-24 | Remove some old if 0/if 1 code, it is pointless to keep this in. | Dale Rahn | |
2002-10-07 | kick, kick. Fix these files which did not come from NetBSD, but the | Dale Rahn | |
powerpc port by Dale Rahn. | |||
2002-10-07 | clean up ifdefs for PIC, resulting code unchanged. | Dale Rahn | |
2002-10-07 | s/curbrk/__curbrk/ as suggested by art, a few _ASM_LABEL added as appropriate. | Dale Rahn | |
2002-10-07 | Simpler, smaller, more efficient and equivalent. | Dale Rahn | |
2002-10-07 | cerror -> __cerror as suggested by art, with a couple of missing _ASM_LABEL() | Dale Rahn | |
added as appropriate. | |||
2002-06-17 | make fabs use asm, and license repair | Theo de Raadt | |
2002-05-08 | Sync with netbsd version, adds SOFTFLOAT (not supported) and copyright. | Dale Rahn | |
2002-05-08 | OpenBSD tag. | Dale Rahn | |
2002-05-08 | Add copyright block to this file I wrote long ago. | Dale Rahn | |
2002-02-19 | We need to keep K&R compat macros for some ports where the assemnbler is | Todd C. Miller | |
still using -traditional-cpp. | |||
2002-02-19 | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | Todd C. Miller | |
2002-02-17 | rfork() needs a fork.S-like stub as well; ok art | Theo de Raadt | |
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2002-01-10 | sigprocmask should return 0 on success, fixes powerpc ntpdate problem. | Dale Rahn | |
2001-09-20 | change PSEUDO_NOERROR so it is indeed does not set errno. | Dale Rahn | |
2001-09-20 | Add PSEUDO_NOERROR similar to that used by NetBSD. | Todd C. Miller | |
Some ports were setting errno in PSEUDO and some were not. Now errno is set for all in PSEUDO and PSEUDO_NOERROR is provided for the non-errno case (only used by _exit). Needs testing on vax and m88k. XXX - hppa and powerpc still lack a real PSEUDO_NOERROR implementation. Currently PSEUDO_NOERROR and PSEUDO are the same (so builds don't break on those platforms). | |||
2001-09-11 | Keep the strings fully quoted. | Dale Rahn | |
2001-09-10 | Use the LBL isnan() and isinf() on all platforms with ieee floating point. | Todd C. Miller | |
2001-09-10 | Use the LBL frexp() on all platforms with ieee floating point. | Todd C. Miller | |
2001-08-25 | Fix the __infinity constant on powerpc. | Dale Rahn | |
from a7r@andern.org | |||
2001-05-11 | PowerPC is big endian, not little endian. This fixes isinf() and isnan() | Dale Rahn | |
2000-11-26 | Properly implement errno handling for the threaded libc (libc_r) | Dale Rahn | |
The powerpc specific code was previously handling system call errors as if kernel threads existed (currently only userlang threads are modeled). Thus if multiple threads existed in a process, the process would not get the correct errno from a system call. This would cause _many_ tests to fail. Fixing this causes a number of the tests in libc_r/TEST to now work, that did not before, however a few still fail. | |||
2000-10-06 | weaken syscall symbols in libc by default | David Leonard | |
2000-03-01 | $OpenBSD$ | Todd T. Fries | |
1999-07-23 | replace the stub ieeefp functions with the real working functions, | Dale S. Rahn | |
from NetBSD. | |||
1999-06-15 | changes required for powerpc libc_r support. | Dale S. Rahn | |
1999-06-07 | replacement pipe() system call; copies data into place inside kernel, so | Theo de Raadt | |
that EFAULT return value is possible | |||
1999-04-25 | missing parts from last commit | Todd C. Miller | |
1999-04-21 | Fix the _THREAD_SAFE path through the cerror code for powerpc. | Dale S. Rahn | |
libc_r was never completed for the powerpc arch. | |||
1999-03-12 | Fixes to the currently unused PIC support in the powerpc asm files. | Dale S. Rahn | |
contact rahnds@openbsd.org before attempting to use this funcationality. | |||
1999-02-01 | mi ptrace | David Leonard | |
1999-02-01 | remove PASSTHRU | David Leonard | |
1999-01-28 | Preliminary version for PIC support. Builds and runs standard and profiled | Dale S. Rahn | |
just fine. pic version has been compiled, but without a ld.so has not been tested. Needs binutils 2.9.1 or later to build pic version. | |||
1998-12-23 | _thread_sys changes for powerpc SYS.h, code mostly from d, fixed up | Dale S. Rahn | |
and completed for checkin. | |||
1998-08-07 | Add correct handling of more systemcalls. either not implemented before | Dale S. Rahn | |
or poorly implemented. | |||
1998-07-19 | fix dependancy item for libc. arch is powerpc not ppc. hmmm. | Dale S. Rahn | |
1998-07-05 | Change some of the local symbols into "temporary", removed symbols. | Dale S. Rahn | |
makes it easier to debug code to see the function entry not the local branch targets. |