summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* rfork/minherit glue in libcpeter1996-02-234-7/+237
| | | | man pages adapted from OpenBSD's versions.
* If a .db file is 0 length, initialize it as if it did not exist.pst1996-02-231-1/+2
| | | | Reviewed by: wollman
* Add a dire warning about misusing the setlogin() system call. Be verypeter1996-02-231-1/+46
| | | | | | | explicit that it is global to the entire "session", and that setsid() or daemon() are need to have been called at some point. The most notable offender of setlogin() misuse is XFree86's xdm.
* man page linkswosch1996-02-181-1/+3
| | | | | | | fts_open.3 -> fts.3 fts_read.3 -> fts.3 fts_children.3 -> fts.3 fts_close.3 -> fts.3
* Fix inet_network to not dump core if passed in an addressmpp1996-02-171-3/+1
| | | | | | with more than 4 octets (e.g. 1.2.3.4.5). Submitted by: Amy Baron <amee@beer.org> via NetBSD-bugs
* Put in missing '_' in call to wrapper _thread_sys_sigsetmask() function.peter1996-02-172-6/+6
|
* Corrected a couple of errors in the fts(3) manual page. The prototypejdp1996-02-151-2/+2
| | | | | | for "fts_open" was wrong. Also, the "fts_info" field of the FTSENT structure was misleadingly described as containing "flags". Actually, it contains a single integer value.
* Fixed a bunch of man page cross references that werempp1996-02-1514-44/+45
| | | | | | | | in the main text of various man pages. Thanks to Warner Losh for adding an option to manck to allow it to scan the entire man page looking for bogus xrefs, instead of just checking the SEE ALSO section.
* Added a little NOTES section explaining that passing in a string thatmpp1996-02-151-0/+22
| | | | | | | | | | resides in read-only memory is going to cause the program to core dump, and this is commmon with older pre-ANSI C programs. (I've scratched my head over this one at 3 in the morning before while trying to port some ancient program) Suggested by: Gary Kline <kline@tera.com>
* XNS sort-of-support is no more.wollman1996-02-131-3/+4
|
* Correct the xref for msgctl: msgctl(2) -> msgctl(3)mpp1996-02-121-4/+4
|
* Added man pages for msgctl(3), msgget(3), msgrcv(3) and msgsnd(3).mpp1996-02-125-1/+656
| | | | Obtained from: NetBSD
* Another round of man page cleanups.mpp1996-02-124-6/+5
| | | | Down to only about 100 items left to cleanup! :-)
* Added a update(4) man page to describe the kernel initiated updatempp1996-02-122-5/+5
| | | | process and changed all of the old references to update(8) to update(4).
* Minor cleanup of the rpc man pages to silence manck.mpp1996-02-127-12/+12
|
* Correct a bunch of man page cross references and generallympp1996-02-1130-58/+62
| | | | | | try and silence "manck". ncurses, rpc, and some of the gnu stuff are still a big mess, however.
* Another round of various man page cleanups.mpp1996-02-093-3/+2
|
* Fixed docs/521.jkh1996-02-091-3/+2
|
* Added some missing MLINKS for section 3 man pages.mpp1996-02-093-4/+4
| | | | | | | Also corrected a few minor formatting errors, file location and cross references in some of the section 3 man pages. This shuts up a lot of the output from "manck" for section 3.
* Clean up documentation on setuid/setgid bit handling.pst1996-02-081-1/+2
|
* Remove support for OSI networking in user-land (#ifdef OSI aor CCITT)wollman1996-02-063-4/+11
| | | | | in preparation for its removal from the kernel source tree. NB: because a function was deleted, libc is now at version 3.0 (was 2.2 previously).
* Make sure xdr_ypresp_all_seq() always returns a sane 'status' value.wpaul1996-02-041-1/+3
| | | | (There were cases where it was leaving the status uninitialized.)
* Add some missing manual page links.mpp1996-02-022-1/+3
|
* Submitted by: bruce, davidg, dysonwosch1996-02-026-1/+29
| | | | | add a BUG section for mmap with current limitation section SYNOPSIS completed
* Another round of spelling fixes.mpp1996-01-302-4/+4
|
* Fix even more spelling errors in some more man pages.mpp1996-01-3022-44/+44
|
* Getpwent() and getservent() can wind up calling free() withmpp1996-01-292-2/+0
| | | | | an invalid pointer if a call to yp_first() fails. Closes PR # 964, and possibly # 952.
* Bring in the man page additions for PT_ATTACH/DETACH|GET/SET_REGS thatnate1996-01-241-3/+90
| | | | | were deleted out after the initial import now that Peter's code has implemented them in -current.
* note in bugs section: madvise not yet implementedwosch1996-01-231-1/+6
|
* Changed the description of SIGSYS to better reflect whatmpp1996-01-223-3/+3
| | | | it means when that signal is received. Closes PR# 686.
* Obtained from: uthreads packagejulian1996-01-221-0/+37
|
* Reviewed by: julian and (hsu?)julian1996-01-2284-107/+1625
| | | | | | Submitted by: John Birrel(L?) changes for threadsafe operations
* - FreeBSD'ized the ptrace manpage by removing non-FreeBSD specific portions.nate1996-01-202-214/+16
| | | | - install ptrace.2
* This commit was generated by cvs2svn to compensate for changes in r13519,nate1996-01-201-0/+395
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * ptrace(2) manpagenate1996-01-201-0/+395
|
* Fix a variety of minor typos and cross references in a bunch ofmpp1996-01-201-1/+1
| | | | | | | | man pages. Masanobu Saitoh <msaitoh@spa.is.uec.ac.jp> Giles Lean <giles@nemeton.com.au> <soda@sra.co.jp>
* Return pointer to new hash node when search inserts it (e.g. therejkh1996-01-131-1/+5
| | | | was some datum given).
* The last of the bind-4.9.3-REL resolver merges.peter1996-01-138-249/+280
|
* Correct the strspn() man page so that it no longer referencesmpp1996-01-101-1/+1
| | | | | | itself as strcspn(). Obtained from: NetBSD-bugs mailing list (PR# 1905)
* Merge the 4.9.3-rel code into the res_* parts. The gethostXXXbyYYYpeter1996-01-077-183/+161
| | | | parts are not quite so simple..
* This commit was generated by cvs2svn to compensate for changes in r13304,peter1996-01-071-0/+114
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Part of bind-4.9.3-rel.. This is for my convenience and reference.peter1996-01-077-760/+1851
| | | | | | | | This import to the vendor branch changes no files...
* | Fix a fencepost error.phk1996-01-051-4/+4
| | | | | | | | Found by: Lars Fredriksen <fredriks@mcs.com>
* | Document the change that I made to pipe(2)peter1996-01-011-4/+12
| |
* | Bump libutil revision after recent addition of setproctitle().peter1996-01-011-1/+9
| | | | | | | | | | | | | | | | Install (optional) libutil.h with prototypes for the functions and document this in the man page. minor cleanups to the various routines, include the prototype file, declare return codes etc.
* | Finally complete my fix for the behaviour of getpass(3) upon receiptjoerg1995-12-312-18/+56
| | | | | | | | | | | | | | | | | | | | | | | | of signals. Signals are now properly caught, tty state is being restored, and the previous sigaction triggered. Upon receipt of a sigcont, echo is turned off again. SIGTSTP causes a buffer flush, the man page mentions this. (Although i rather think of it as a feature than a bug.) This is likely to be my last FreeBSD action for 1995, xearth shows me that our .au guys must already write 1996. :-)
* | This commit was generated by cvs2svn to compensate for changes in r13122,peter1995-12-3047-6169/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | recording cvs-1.6 file deathpeter1995-12-309-604/+0
| |
* | Added $Id$.bde1995-12-301-0/+4
| |
* | Implemented non-statistical kernel profiling. This is based onbde1995-12-291-8/+148
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | looking at a high resolution clock for each of the following events: function call, function return, interrupt entry, interrupt exit, and interesting branches. The differences between the times of these events are added at appropriate places in a ordinary histogram (as if very fast statistical profiling sampled the pc at those places) so that ordinary gprof can be used to analyze the times. gmon.h: Histogram counters need to be 4 bytes for microsecond resolutions. They will need to be larger for the 586 clock. The comments were vax-centric and wrong even on vaxes. Does anyone disagree? gprof4.c: The standard gprof should support counters of all integral sizes and the size of the counter should be in the gmon header. This hack will do until then. (Use gprof4 -u to examine the results of non-statistical profiling.) config/*: Non-statistical profiling is configured with `config -pp'. `config -p' still gives ordinary profiling. kgmon/*: Non-statistical profiling is enabled with `kgmon -B'. `kgmon -b' still enables ordinary profiling (and distables non-statistical profiling) if non-statistical profiling is configured.
OpenPOWER on IntegriCloud