summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Collapse)Author
2004-03-16Document correct limit to path names lengths. Resolves PR 3716.Otto Moerbeek
ok jmc@ tedu@
2004-03-16errno should only be gotten from <errno.h>. ok help jmc@Ted Unangst
2004-03-14remove some weirdness;Jason McIntyre
2004-03-11Document that a NULL status pointer is allowed. OK deraadt@Todd C. Miller
2004-03-11Document RB_USERREQTom Cosgrove
ok beck@, jmc@, deraadt@
2004-03-09A better description of the machine-dependent PT commands.Miod Vallat
2004-03-05don't leak memory. free and netbsd via Patrick LatifiTed Unangst
2004-03-02bpf sysctl. ok jmcTed Unangst
2004-03-02fix formatting, Pedro MartellettoTed Unangst
2004-03-02fix typo; fgsch@Todd C. Miller
2004-03-02document net.inet.tcp.reasslimitMarkus Friedl
2004-03-02Better wording for the longjmp(X, 0) case. OK otto@, deraadt@Todd C. Miller
2004-03-01do not recommend a format string error..; pbastos@rdc.puc-rio.brTheo de Raadt
2004-03-01Be explicit about the return value of setjmp() when longjmp(..., 0) is called.Otto Moerbeek
ok tedu@ deraadt@
2004-03-01longjmp should not return 0, if longjmp(..., 0) is invoked return 1.Dale Rahn
ok miod@ deraadt@
2004-03-01fix weak aliases for _thread_sys functions, proper libpthead linking.Dale Rahn
rewrittent to more closely model other archs. ok deraadt@ miod@
2004-02-27change amd64's MACHINE_ARCH from x86_64 to amd64. There are many manyTheo de Raadt
reasons for this, quite a few of them technical, and not all of them in response to Intel's broken ia32e crud. The gcc toolchain stays at x86_64 for now.
2004-02-22Define OSYSCALL* macros, as their SYSCALL* counterparts, but using theMiod Vallat
int 0x80 mechanism; and use OSYSCALL for sigreturn() as done in the sigcode. Naming borrowed from NetBSD. ok deraadt@
2004-02-19Sanity fix.Thierry Deval
reviewed by deraadt@, tedu@
2004-02-18errno is int, not long; tracked down by otto@Miod Vallat
ok deraadt@
2004-02-16remove redundant code, u_int8_t cannot be > 0xffOtto Moerbeek
ok deraadt@ millert@
2004-02-16Remove WARN_REFERENCES incorrectly imported from NetBSD. ok miod@Dale Rahn
2004-02-13death to osigaltstack. ok deraadt@Ted Unangst
2004-02-12Update from netbsd, prodded by miod@Dale Rahn
2004-02-11sort sysctls;Jason McIntyre
ok millert@
2004-02-11correct syscall() stub; fixes perl and vi.recoverTheo de Raadt
2004-02-11amd64 would use negative stack direction, if it used this file; millert okTheo de Raadt
2004-02-10It's a PTY, not a PYT and KERN_TTY_NPTYS is not changeable.Todd C. Miller
2004-02-10Document KERN_TTY_INFO, KERN_TTY_MAXPTYS and KERN_TTY_NPTYS sysctls.Todd C. Miller
2004-02-10kill memory.3;Jason McIntyre
suggested by deraadt@
2004-02-10improve Nd; from millert@Jason McIntyre
2004-02-10add MLINKS for 64-bit functions in byteorder(3);Jason McIntyre
passes miod's "make sure it doesn't break libc or libpthread" test;
2004-02-10Fix PIC cerror. ok miod@ mickey@Dale Rahn
2004-02-10make Nm match Dt;Jason McIntyre
2004-02-10make Nm match Dt;Jason McIntyre
2004-02-10CURBRK -> __curbrk changes from mickey, minbrk addition by me, ok mickey@Dale Rahn
2004-02-10correct function names, ok deraadt@Dale Rahn
2004-02-09masks are only 32 bits on openbsdTheo de Raadt
2004-02-09do signal blocking before saving registersTheo de Raadt
2004-02-09make Nm match Dt; found by pb@Jason McIntyre
some of this ok espie@, all of it ok deraadt@
2004-02-09punctuate variable; okay jmc@.Marc Espie
2004-02-08FD_SETSIZE has been cranked up to 1024Otto Moerbeek
ok deraadt@ millert@
2004-02-0816 byte align for performance, as on other architecturesTheo de Raadt
2004-02-08from freebsd, helps awk too:Theo de Raadt
Fix fabs(). This commit brought to you by the letter 'l'. (fstp stores a mem32 value, fstpl stores a mem64 value)
2004-02-08from freebsd (and appears to make our awk work better)Theo de Raadt
Tidy up modf.S and make it actually work. It wasn't extracting the value out of ST(0) before copying it to %xmm0. Also remove bogus stack frame and work in the red zone.
2004-02-07Do not generate text relocations in PIC code.Dale Rahn
2004-02-06make old & new SYSENTRY macrosTheo de Raadt
2004-02-06fix alias definition, was backwards.Dale Rahn
2004-02-04Traditionally, getopt(3) has treated "--foo" the same as "--". However,Todd C. Miller
this can cause confusion when a user tries to use a long option with a program that only supports short options. Furthermore, it appears to be in violation of POSIX, which states that "--" shall indicate the end of argument processing, not any string that begins with "--". OK otto@ and closes PR 3666.
2004-02-04H comes before J;Jason McIntyre