summaryrefslogtreecommitdiffstats
path: root/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* use .In rather than .Fd #includeschwarze2015-09-1053-190/+190
|
* reduce more .Nd to one line and kill more .Tnschwarze2015-09-101-4/+4
|
* reduce .Nd to one line and kill .Tn while hereschwarze2015-09-105-25/+15
|
* another missing Mdocdateschwarze2015-09-101-2/+2
|
* missing commas at the end of .Nm lines in the NAME sectionschwarze2015-09-101-3/+3
|
* Adds hidden _libc_FOO aliases for the system call stubs.guenther2015-09-1050-163/+278
| | | | | | | | | | Stop generating _brk and _sbrk symbols: they've already been hidden. Set the ELF symbol size on the syscall stubs. Give the __{min,cur}brk symbols a size and type, and hide more jump labels. alpha, arm, m88k, sh, sparc, and vax assistance miod@ hppa assistance kettenis@ ok deraadt@ miod@
* explain why __explicit_bzero_hook will remain; ok guentherderaadt2015-09-101-1/+3
|
* hide __dtoa_locks as a static in the single use case; ok guentherderaadt2015-09-105-11/+6
|
* no more mpool;jmc2015-09-104-13/+9
|
* tweak Nd after previous; ok mpijmc2015-09-101-2/+2
|
* Remove link_addr(3). A function to encode the name of an interface inmpi2015-09-104-137/+8
| | | | | | | | | | | | a sockaddr_dl is a questionnable interface. But now it makes it harder to properly reference ifp becauses of this. Set sdl_index to the index of the corresponding interface when constructing a routing message. Ridding previous libc crank. ok guenther@, deraadt@, dlg@
* seperate->separate;jmc2015-09-091-3/+9
| | | | while here, i've adjusted the formatting of one list
* Move to next tame() API. The flags are now passed as a very simple string,deraadt2015-09-091-34/+35
| | | | | | | | which results in tame() code placements being much more recognizeable. tame() can be moved to unistd.h and does not need cpp symbols to turn the bits on and off. The resulting API is a bit unexpected, but simplifies the mapping to enabling bits in the kernel substantially. vague ok's from various including guenther doug semarie
* Remove the mpool(3) manpagesguenther2015-09-091-5/+2
| | | | prodded by miod@
* Bump for symbol removalsguenther2015-09-091-1/+1
|
* Hide __sigintr and __strsignal as internal implementation details.guenther2015-09-095-13/+15
| | | | | | Delete the already hidden _signal alias too. ok deraadt@ millert@
* Hide all unnecessary asr / resolver related API with _ prefixes.deraadt2015-09-0914-361/+238
| | | | direction & ok guenther
* Use SOCK_NONBLOCK in a couple more placesguenther2015-09-092-33/+6
| | | | ok deraadt@
* Stop exporting from libc the <mpool.h> and the mpool_* APIguenther2015-09-092-8/+122
| | | | ports scan by sthen@
* Hide YP-specific xdr_* functions, and have the YP tools link -lrpcsvcderaadt2015-09-092-19/+44
| | | | | as needed. ok miod guenther
* Syslogd can handle 8192 bytes per message now. Increase the libcbluhm2015-09-091-2/+2
| | | | | | syslog(3) limit to the same size. The buffer needs one byte more as it conains a NUL that sendsyslog(2) does not process. OK deraadt@
* Simplify makefile rules for building the ASM stubs into "pick somethingguenther2015-09-091-113/+45
| | | | | | from column A and something from column B". ok miod@ deraadt@
* Backtrack a little bit and don't try to use the per-thread errno location ifkettenis2015-09-091-23/+21
| | | | | | | | | | r2 is zero. Some upcoming changes will probably change the offset at which the errno pointer is stored, or might even store errno directly. Instead, call __errno to get the location of errno. Make sure we go through the PLT such that we call the version in libpthread if it is linked in. Set up r30 for this purpose. The ___cerrno function itself remains protected. ok guenther@
* Delete ktracing of context switches: it's unused, and not particularly useful,guenther2015-09-071-4/+2
| | | | | | | and doing VOP_WRITE() from inside tsleep/msleep makes the locking too complicated, making it harder to move forward on MP changes. ok deraadt@ kettenis@
* Add getfsstat(2) to TAME_RPATH; OK deraadt@tim2015-09-071-3/+4
|
* Document the rule for keeping static and shared archs in syncguenther2015-09-061-0/+8
|
* Fix aliasing of sys_errlist, sys_nerr, sys_siglist, and sys_signameguenther2015-09-0613-91/+93
| | | | | | to eliminate duplicate copies of the tables and get direct access internally ok kettenis@ deraadt@
* spacing required before punctuation;jmc2015-09-061-2/+2
|
* remove excessive Xr; from rob piercederaadt2015-09-061-5/+3
|
* Fix previous: restore a PSEUDO_SUFFIX macro to actually handle errno and returnguenther2015-09-051-1/+2
| | | | | cone of shame guenther@ ok deraadt@
* This is probably what guenther@ had in mind.miod2015-09-051-2/+2
|
* off-by-one for the previous patch. the limit is inclusive: 0x10ffff is a valid codepoint.semarie2015-09-051-2/+2
| | | | ok stsp@
* Hide some YP internals. Annotate a few private hooks currently usedderaadt2015-09-051-13/+4
| | | | | by ypserv, passwd, or chpass... maybe we can use different tricks to interface with libc...
* rather than assuming stderr is alive, open + dprintf to /dev/ttyderaadt2015-09-051-5/+15
| | | | ok guenther millert
* check for limiting the range of UTF-8 to 0x10FFFF, as requested by RFC 3629.semarie2015-09-051-1/+8
| | | | ok stsp@
* Delete duplicated CVS $foo tagsguenther2015-09-051-3/+1
|
* Use new framework for wrapping dbopen()guenther2015-09-052-1/+35
| | | | | | Move internal declarations from <db.h> to libc's hidden/db.h ok kettenis@
* Use new framework for wrapping cat{open,gets,close}(), eliminatingguenther2015-09-0511-91/+42
| | | | | | _cat* in the process. ok kettenis@
* Adds hidden _libc_FOO aliases for the system call stubs.guenther2015-09-0539-125/+198
| | | | | | | | Stop generating _brk and _sbrk symbols: they've already been hidden. Set the ELF symbol size on the syscall stubs. Give the __{min,cur}brk symbols a size and type, and hide more jump labels. ok deraadt@
* Add missing information to the socket splicing man page to make itbluhm2015-09-041-3/+6
| | | | | more comprehensible. OK jmc@ tedu@
* word fix; from henning petersen (netbsd pr/49641, -r1.18)jmc2015-09-041-3/+3
| | | | ok millert
* no more gcc2.daniel2015-09-031-8/+2
| | | | ok deraadt@
* use _PATH_RESCONFderaadt2015-09-021-2/+2
|
* Delete 3 more stderr messages, right before returning a proper error.deraadt2015-09-023-6/+6
| | | | Code from way in the past.
* do not printf() on error from libc; ok millertderaadt2015-09-021-3/+1
|
* Remove all bogus writes to stderr. Only explicit requests shouldderaadt2015-09-0110-70/+23
| | | | | go that way. ok miod beck
* Remove calls to perror(); the error returns are sufficient, and thesederaadt2015-09-013-27/+7
| | | | | library may not assume stderr is useable. ok millert miod beck
* only 32-bit systems need the quad functions.deraadt2015-08-311-2/+8
| | | | | skipping a libc crank since unused in base on 64bit systems discussed with miod, tedu; ok kettenis
* use #function rather than @function on armderaadt2015-08-311-2/+2
| | | | ok guenther
* Also add ALTEXIT_{STRONG,WEAK} to hppa64, copied from hppa. Document'em tooguenther2015-08-312-3/+11
| | | | ok deraadt@