summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Fixed some minor formatting problems to silence manck some more.mpp1996-02-128-21/+13
| | | | | | | | | Corrected some bogus cross references to man pages that we don't/won't have and either deleted them, or found a more appropriate man page that we do have. Various other minor changes to silence manck. Manck is currently down to about 200 lines of errors, down from the 500 - 600+ when I started all this.
* 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 man page section number references (e.g. don't use thempp1996-02-1140-433/+421
| | | | | old 1M, 3X and 3S section numbers) and make some minor formatting changes to silence manck.
* Correct a bunch of man page cross references and generallympp1996-02-1134-65/+69
| | | | | | try and silence "manck". ncurses, rpc, and some of the gnu stuff are still a big mess, however.
* Add libfakegnumalloc.phk1996-02-111-1/+1
|
* Make a scaffold libgnumalloc.so.#.# unless there is a packeage calledphk1996-02-114-0/+34
| | | | "gnumalloc*"
* #include <kerberosIV/des.h> -> #include <des.h>markm1996-02-111-1/+1
|
* Don't install mdX.3, it's the template used to build the other pages.phk1996-02-091-2/+2
|
* Bill was a little to fast here...phk1996-02-091-3/+1
|
* Another round of various man page cleanups.mpp1996-02-093-3/+2
|
* Add some missing MLINKS, correct some cross references, correct somempp1996-02-092-7/+2
| | | | file locations and some minor formatting/style problems.
* Fixed docs/521.jkh1996-02-091-3/+2
|
* Add a couple more man page links and some minor formatting fixes.mpp1996-02-092-5/+6
|
* Correct one small typo in previous commit.mpp1996-02-091-2/+2
|
* Added some missing MLINKS for section 3 man pages.mpp1996-02-0911-23/+299
| | | | | | | 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.
* Fix some minor formatting problems in the curs_termin.3 man page.mpp1996-02-081-3/+4
|
* Fix a typo in one of the function names.mpp1996-02-081-1/+1
|
* 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-308-22/+22
|
* Fix even more spelling errors in some more man pages.mpp1996-01-3022-44/+44
|
* Back out the thread_init code in order to allow -current to bootstrapnate1996-01-301-8/+0
| | | | | | from -stable, until a better solution is found. Submitted by: Consensus of mailing list and the almighty Jordan :)
* 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.
* Build libscrypt in addition to libdescrypt if RELEASEDIR is set.joerg1996-01-241-0/+4
| | | | Releases do need both libraries (they go into different distributions).
* 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
|
* error handling for threaded appsjulian1996-01-221-0/+50
|
* Reviewed by: julianjulian1996-01-22175-0/+21347
| | | | | | | | Submitted by: john birrel One version of the pthreads library another will follow with differnt actions under some cases.. not QUITE complete
* Reviewed by: julian and (hsu?)julian1996-01-2285-108/+1634
| | | | | | 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>
* | Check the count in the first word of __CTOR_LIST__ before executingjdp1996-01-151-4/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the loop that invokes the static constructors. That makes it safe to link c++rt0.o into any shared library, even one that does not have any static constructors. Formerly, doing that would cause a bus error. If the library has no static constructors, __CTOR_LIST__ comes out as a simple 4-byte COMMON region, and it does not have the usual NULL word that terminates the list of constructors. This caused the old code to "call" a garbage address via the non-existent entry __CTOR_LIST__[1]. The analogous code that invokes the static destructors was already safe. This change is fully backward-compatible. Reviewed by: dfr@render.com (Doug Rabson)
* | 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>
* | | Extract the login name when doing a ps on a dead kernel.peter1996-01-011-0/+2
| | |
* | | Document the change that I made to pipe(2)peter1996-01-011-4/+12
| | |
* | | Bump libutil revision after recent addition of setproctitle().peter1996-01-019-3/+80
| | | | | | | | | | | | | | | | | | | | | | | | 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.
OpenPOWER on IntegriCloud