summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* add missing comma(s) in .Xr macroswosch1996-09-237-13/+18
|
* phkmalloc/3phk1996-09-232-196/+342
| | | | | | | | Various neat features added. More documentation in the manpage. If your machine has very little RAM, I guess that would be < 16M these days :-(, you may want to try this: ln -fs 'H<' /etc/malloc.conf check the manpage.
* Fix typo from previous commit (tsvsec --> tv_sec).alex1996-09-231-1/+1
|
* fix .Xr macrowosch1996-09-212-2/+2
|
* ".Xr chflags 1," -> ".Xr chflags 1 ,"peter1996-09-211-1/+1
|
* Add the utrace syscall.phk1996-09-201-3/+4
|
* ts_sec -> tv_secnate1996-09-202-5/+5
| | | | ts_nsec -> tv_nsec
* Fix a very rare error condition: The code to free VM back to the kernelphk1996-09-171-3/+4
| | | | | | | as done after a quasi-recursive call to free() had modified what we thought we knew about the last chunk of pages. This bug manifested itself when I did a "make obj" from src/usr.sbin/lpr, then make would coredump in the lpd directory.
* Add comment explaining what function doesache1996-09-171-3/+11
| | | | Cover strcoll return 0 case too
* Don't use __dead or __pure in user code. They were obfuscationsbde1996-09-142-7/+8
| | | | | | for gcc >= 2.5 and no-ops for gcc >= 2.6. Converted to use __dead2 or __pure2 where it wasn't already done, except in math.h where use of __pure was mostly wrong.
* fwopen() argument type mis-describedpst1996-09-131-1/+1
| | | | Obtained from: NetBSD lib/2751 (der Mouse)
* Resync statfs struct with sys/mount.h.peter1996-09-071-3/+7
|
* Apply patch to fix +group YP overrides and prevent SEGV on badlywpaul1996-09-051-8/+47
| | | | formatted groups (foo:*).
* Describe POSIX saved IDs behaviour betterache1996-09-031-5/+19
|
* Describe current behaviour (_POSIX_SAVED_IDS are ON),ache1996-09-011-2/+12
| | | | | | | traditional BSD4.4 behavior (_POSIX_SAVED_IDS are OFF) was described before. Add some hooks to easily change this text when POSIX_SAVED_IDS model will be changed.
* Fixed the easy cases of const poisoning in the kernel. Cosmetic.bde1996-08-312-2/+3
|
* Don't depend in the kernel on the gcc feature of doing arithmetic onbde1996-08-311-10/+10
| | | | pointers of type `void *'. Warn about this in future.
* Sigh, back out the last bright idea I had here about compiling the res_*peter1996-08-309-2/+3633
| | | | | | | | routines from contrib/bind directly. There were too many problems, including having to add -DUSE_OPTIONS_H to the entire libc source in order for the contrib code to pick up it's options, and so on. Instead, I've merged the changes, libc is now self contained again.
* back out last two changes, this caused the mandoc pages to be replaced bypeter1996-08-303-504/+529
| | | | man pages. I'll fold in the real changes in a seperate commit.
* oops, brain-lapse caused undefined symbolpeter1996-08-301-3/+3
|
* The last commit failed part-way through, re-add the generatedpeter1996-08-293-0/+698
| | | | resolver man pages.
* Revert change to build the reolver man pages on the fly, install thepeter1996-08-291-13/+10
| | | | machine-generated versions
* function appeared in Version 7 AT&T UNIXwosch1996-08-2917-3/+105
| | | | Obtained from: ftp://netlib.att.com/netlib/att/cs/v7man/man2
* Merge in bind-4.9.4-P1 resolver...peter1996-08-2923-3930/+860
|
* Cleaned up interrupt masking by declaring the state variable in abde1996-08-281-6/+5
| | | | | | | machine-dependent macro and passing it to all machine-dependent macros. Eliminated the state variable for the GUPROF case.
* Some minor man page cleanup.mpp1996-08-231-9/+10
|
* Typo police.mpp1996-08-231-2/+2
|
* Correctly use .Fn instead of .Nm to reference function namesmpp1996-08-2297-168/+224
| | | | | | | | in a bunch of man pages. Use the correct .Bx (BSD UNIX) or .At (AT&T UNIX) macros instead of explicitly specifying the version in the text in a bunch of man pages.
* Update a bunch of man pages to use .Fn insteadmpp1996-08-2236-191/+210
| | | | of .Nm when referencing funciton names.
* List all of the include files required for getpeername and getsockname.mpp1996-08-222-0/+4
| | | | | | Closes PR# 1170. Submitted by: James Raynard <jraynard@dial.pipex.com>
* Submitted by: john birell (jb@cimlogic.com.au)julian1996-08-222-6/+6
| | | | | fixups for makefiles and for Thread-safe sycalls
* Some cleanups to the callout lists recently added.julian1996-08-221-0/+3
| | | | | | | | note that at_shutdown has a new parameter to indicate When during a shutdown the callout should be made. also add a RB_POWEROFF flag to reboot "howto" parameter.. tells the reboot code in our at_shutdown module to turn off the UPS and kill the power. bound to be useful eventually on laptops
* Update some more man pages to use the .Fx macro.mpp1996-08-213-5/+7
|
* Correctly document when getopt returns EOF and '?', and some othermpp1996-08-211-5/+7
| | | | minor cleanup.
* Add Idache1996-08-201-3/+5
| | | | Move comment up to place
* Add isblank attr to non-break spaceache1996-08-201-1/+4
| | | | Add comment describing how upper half of table made
* Remove isgraph attr from non-break spaceache1996-08-201-1/+1
|
* Submitted by: John Birrell <cimaxp1!jb@werple.net.au>julian1996-08-2012-74/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Here are the diffs for libc_r to get it one step closer to P1003.1c These make most of the thread/mutex/condvar structures opaque to the user. There are three functions which have been renamed with _np suffixes because they are extensions to P1003.1c (I did them for JAVA, which needs to suspend/resume threads and also start threads suspended). I've created a new header (pthread_np.h) for the non-POSIX stuff. The egrep tags stuff in /usr/src/lib/libc_r/Makefile that I uncommented doesn't work. I think its best to delete it. I don't think libc_r needs tags anyway, 'cause most of the source is in libc which does have tags. also: Here's the first batch of man pages for the thread functions. The diff to /usr/src/lib/libc_r/Makefile removes some stuff that was inherited from /usr/src/lib/libc/Makefile that should only be done with libc. also: I should have sent this diff with the pthread(3) man page. It allows people to type make -DWANT_LIBC_R world to get libc_r built with the rest of the world. I put this in the pthread(3) man page. The default is still not to build libc_r. also: The diff attached adds a pthread(3) man page to /usr/src/share/man/man3. The idea is that without libc_r installed, this man page will give people enough info to know that they have to build libc_r.
* Reflect the removal of the kernel's FD_SETSIZE limit.smpatel1996-08-201-19/+21
|
* A pipe function call appeared in Version *3* AT&T UNIX, notwosch1996-08-181-1/+1
| | | | | | Version 6. Close PR #1490 Obtained from: Peter H. Saulus in `A Quarter Century of UNIX', page 50
* Don't claim to be POSIX compliant, since our alarm function isn't.mpp1996-08-151-5/+5
|
* NCARGS is defined as 65536 in the released system, not 20480.mpp1996-08-152-2/+2
|
* Add Idache1996-08-141-0/+2
|
* Fix nasty bracketing/precedence bug. Every time something read (andpeter1996-08-131-2/+2
| | | | | | | | | refilled) a file that was either line- or un-buffered, all files were flushed. According to the code comment, the flush (according to ANSI) is supposed to happen on write + line buffered output files, not _all_ files. Obtained from: OpenBSD / Theo de Raadt, possibly from proven@cygnus.com
* Back out fallback approximation changes, they are not so right to liveache1996-08-133-40/+15
|
* Back out minor bumping per Peter suggestionache1996-08-131-1/+1
|
* simplify/speedup/extendache1996-08-131-18/+22
|
* Bump minor number - new function addedache1996-08-131-1/+1
|
* Remove old version hooksache1996-08-122-12/+2
|
* Convert to newly aded collate compare functionache1996-08-123-10/+10
|
OpenPOWER on IntegriCloud