summaryrefslogtreecommitdiffstats
path: root/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* sigh, watch for compile errors...drahn2004-02-021-4/+4
|
* Add const type qualifier. ok jmc@nordin2004-02-012-4/+4
|
* escape punctuation correctly;jmc2004-02-011-3/+3
|
* s/RFC3390/RFC 3390/jmc2004-02-011-2/+2
|
* do not double login_cap.c; tholoderaadt2004-02-011-2/+2
|
* s/arm32/arm/ with VFP bit to match netbsd.drahn2004-02-012-5/+5
|
* ARGH, forgot tags.drahn2004-02-0169-1/+69
|
* arm libc support. From NetBSD. currently supports softfloat.drahn2004-02-0174-0/+11427
|
* missing comma; jmc@markus2004-01-311-2/+2
|
* document net.inet.tcp.rfc3390; ok jmc@markus2004-01-311-1/+6
|
* Fix a logic thinko I made in rev. 1.27. This fixes nlist whenmillert2004-01-301-5/+5
| | | | | the user passes in a symbol name with an underscore pre-pended on ELF systems.
* fix to use sigaltstack again. help miod ok miod deraadttedu2004-01-292-11/+11
|
* oopsderaadt2004-01-281-2/+2
|
* toast long linederaadt2004-01-281-2/+3
|
* the rest of the libs stuff; from art@ againmickey2004-01-282-4/+5
|
* things for amd64; from art@mickey2004-01-2882-0/+3692
|
* Use libkern's fast ffs() in libc too.miod2004-01-262-2/+18
|
* use new .St macro;jmc2004-01-257-15/+15
|
* document EPERM; from Pedro Martelletto;jmc2004-01-241-1/+3
| | | | ok millert@
* `Ns' implies `No', so `Ns No' -> `Ns'; (even simpler in adduser(8))jmc2004-01-238-16/+16
| | | | discussed with todd@
* Use closefrom(); ok millert teduderaadt2004-01-231-4/+2
|
* Call _exit() not exit() from abort() if we are unable to kill ourselvesmillert2004-01-201-3/+3
| | | | | to avoid flushing stdio twice. This code path should never really happen though. Also make the function declaration ANSI. OK deraadt@
* Stop parsing the buffer after an appropriate number of digits; from NetBSDmillert2004-01-201-22/+19
| | | | OK otto@ and miod@
* Fix the example code. The loop invariant 'i' was not bound by MAXTOKENSmillert2004-01-201-3/+3
| | | | | which could result in writing a NUL byte outside of tokens[]. A fix, from Patrick Latifi, is to move the increment into the "i < MAXTOKENS - 1" block.
* emulation names are not changeabletedu2004-01-191-2/+2
|
* ABI breakage happened with the sigaltstack replacement. It is too late,deraadt2004-01-153-9/+10
| | | | | | | now we just have to cope. Since setjmp uses it, the alpha and sparc64 are unhappy with the structure change. In a few days, we will make the second hop here, for now, use the old system call until all binaries have the new struct in them.
* .Xr closefromtedu2004-01-141-1/+2
|
* update struct, noted by deraadt@tedu2004-01-141-2/+2
|
* full date in .Dd;jmc2004-01-121-2/+2
|
* typo from jmc@tedu2004-01-121-2/+2
|
* new syscall closefrom(2). ok deraadt millerttedu2004-01-123-5/+65
|
* document WAIT_ANY and WAIT_MYPGRP;jmc2004-01-121-3/+13
| | | | help and ok miod@
* some comments on ffs sysctls, mainly dirhashtedu2004-01-121-1/+17
|
* __sglue should be extern; from art@millert2004-01-111-2/+4
|
* auth_clean does not clear the options settingsmillert2004-01-101-2/+3
|
* Don't clean options in auth_clean() which was introduced in rev 1.8.millert2004-01-101-9/+1
| | | | | login(1) depends on auth_clean() leaving options alone so this was API breakage. Verified to not make ftpd leak memory by mpech@.
* Add missing include of poll.h to example code; Andre Nathanmillert2004-01-081-1/+2
|
* in the description of ip.sourceroute, point people to securelevel(7), asjmc2004-01-081-3/+4
| | | | for other sysctls affected by securelevel;
* alphabetic order;jmc2004-01-081-6/+6
| | | | sort spacing;
* use va_copy() with gcc 3 and up.brad2004-01-081-2/+8
| | | | ok millert@ espie@
* add dirhash sysctlstedu2004-01-081-1/+4
|
* document syn cache sysctl; ok deraadt, jmc, itojunmarkus2004-01-071-1/+7
|
* Implement KERN_PROC2 sysctl from NetBSD. This will allow us tomillert2004-01-071-2/+12
| | | | | have ps and friends be independent of changes in struct proc et al in the kernel. OK deraadt@
* amout -> amount; from tom@.fgsch2004-01-071-2/+2
|
* - Rename index to longindex and explain its use.fgsch2004-01-061-9/+20
| | | | | | | | - Talk about zeroing the last element of the longopts array. - Remove '?' from the switch and some KNF to the code. - Change 0's to NULL where appropriate. jmc@ ok.
* Use correct type for old values. No binary change.otto2004-01-052-4/+4
| | | | ok mickey@ miod@
* net.inet.carp.preempt is disabled by default.mcbride2004-01-021-2/+2
| | | | Pointed out by david@
* Implement svc_getreq_poll(3) and friends and use poll(2) instead of select(2)millert2003-12-319-270/+463
| | | | | | | | | in the libc rpc code. The main difference between this and the previous version is the use of a simple free list that simplifies the logic when adding a socket to svc_pollfd. I've also added code to pack svc_pollfd when the free list gets too big. The idea general idea is to keep svc_pollfd as tightly packed as possible to make poll(2) efficient. Tested by many people and OK deraadt@
* sync protos with <netdb.h>;jmc2003-12-301-3/+3
| | | | from Andrey Matveev;
* Mention session ID; OK deraadt@millert2003-12-281-1/+2
|