summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Correct bswap64() prototype.sobomax2002-06-031-1/+1
| | | | | | Submitted by: glewis MFC after: 1 day (assuming that there is re's approval)
* Fix typo in the BSD copyright: s/withough/without/schweikh2002-06-0220-20/+20
| | | | | Spotted and suggested by: des MFC after: 3 weeks
* Add NCURSES_OSPEED replace command to MANFILTERache2002-06-022-2/+4
|
* Correct a bunch of typos. Translators can ignore this commit.schweikh2002-06-021-8/+8
| | | | MFC after: 3 weeks
* Remove a URL from the middle of the BSD copyright (a clicko? a pasto?).schweikh2002-06-021-4/+4
| | | | | | | | | Fix typos: s/evironment/environment s/cont/const s/_lonjmp/_longjmp MFC after: 3 weeks
* Add mdoc bits for the new waitpid() WCONTINUED option, andmike2002-06-011-0/+12
| | | | WIFCONTINUED macro.
* Grammar nit: treat "contents" as plural.archie2002-05-311-1/+1
|
* Fixed modes.ru2002-05-3125-25/+28
|
* Grammar fix: "contents" is plural.archie2002-05-311-2/+2
| | | | MFC after: 1 day
* Const poison.phk2002-05-301-3/+5
| | | | Partially submitted by: wollman
* Fix syntax errors (labels with no statement following).wollman2002-05-301-0/+2
|
* Use correct printf format specifier to print unsigned longs.wollman2002-05-301-1/+1
|
* Avoid unintentional trigraph.wollman2002-05-301-1/+1
|
* Add missing newline at end of file.wollman2002-05-301-1/+1
|
* Missed one in previous commit.des2002-05-301-2/+4
| | | | Pointed out by: nectar
* Add used include of <string.h>.wollman2002-05-301-0/+1
|
* Add libusb.so.0 from the FreeBSD services 4.5 DVD. libusb is now known asobrien2002-05-302-4/+110
| | | | | | libusbhid in RELENG_4. Requested by: joe
* Add libusb.so.0 from the FreeBSD services 4.5 DVD. libusb is now known asobrien2002-05-302-3/+111
| | | | | | libusbhid in RELENG_4. Requested by: joe
* mdoc(7) police: kill whitespace at EOL.ru2002-05-301-1/+1
|
* mdoc(7) police: polish markup.ru2002-05-301-34/+68
|
* mdoc(7) police: tidy up the markup.ru2002-05-301-6/+15
|
* mdoc(7) police: Tidy up the markup.ru2002-05-301-29/+37
|
* mdoc(7) police: kill hard sentence break.ru2002-05-301-4/+4
|
* mdoc(7) police: markup nits.ru2002-05-301-43/+53
|
* Check for defined(__i386__) instead of just defined(i386) since the compileralfred2002-05-301-1/+1
| | | | will be updated to only define(__i386__) for ANSI cleanliness.
* Since POSIX gives us plenary authority to define _t types, changewollman2002-05-292-3/+3
| | | | | | | __dlfunc_t to dlfunc_t to match what I have proposed to the Austin Group. (This also makes it easier for applications to store these values before they decide what to do with them, e.g., in a wrapper function.)
* Add link dlopen(3) -> dlfunc(3).wollman2002-05-291-1/+2
| | | | Reminded by: mike
* Reorganize dlfcn.h slightly to separate out XSI and BSD interfaces.wollman2002-05-293-6/+61
| | | | | | | | Add new dlfunc() interface, which is a version of dlsym() with a return type that can be cast to a function pointer without turning your computer into a frog. Reviewed by: freebsd-standards
* mdoc(7) police: nits.ru2002-05-291-1/+2
|
* mdoc(7) police: markup nits.ru2002-05-291-10/+17
|
* mdoc(7) police: bump document date on behalf of previous delta.ru2002-05-291-1/+1
|
* mdoc(7) police: sort xrefs.ru2002-05-291-2/+2
|
* mdoc(7) police: nit.ru2002-05-291-1/+1
|
* mdoc(7) police: fix markup for types.ru2002-05-291-4/+4
|
* Add pam_ksu(8), a module to do Kerberos 5 authentication andnectar2002-05-284-0/+412
| | | | | | $HOME/.k5login authorization for su(1). Reviewed by: des (earlier version)
* Remove use of __P() (actually P()) from code now that it's no longeralfred2002-05-282-42/+42
| | | | available.
* Fix formatting, this is hard to explain, so I'll show one example.alfred2002-05-28129-141/+282
| | | | | | | | | | - float ynf(int n, float x) /* wrapper ynf */ +float +ynf(int n, float x) /* wrapper ynf */ This is because the __STDC__ stuff was indented. Reviewed by: md5
* Assume __STDC__, remove non-__STDC__ code.alfred2002-05-28141-1502/+5
| | | | Reviewed by: md5
* Assume __STDC__, remove non-__STDC__ code.alfred2002-05-2854-580/+42
| | | | Submitted by: keramida
* Add uuidgen(2) and uuidgen(1).marcel2002-05-282-1/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The uuidgen command, by means of the uuidgen syscall, generates one or more Universally Unique Identifiers compatible with OSF/DCE 1.1 version 1 UUIDs. From the Perforce logs (change 11995): Round of cleanups: o Give uuidgen() the correct prototype in syscalls.master o Define struct uuid according to DCE 1.1 in sys/uuid.h o Use struct uuid instead of uuid_t. The latter is defined in sys/uuid.h but should not be used in kernel land. o Add snprintf_uuid(), printf_uuid() and sbuf_printf_uuid() to kern_uuid.c for use in the kernel (currently geom_gpt.c). o Rename the non-standard struct uuid in kern/kern_uuid.c to struct uuid_private and give it a slightly better definition for better byte-order handling. See below. o In sys/gpt.h, fix the broken uuid definitions to match the now compliant struct uuid definition. See below. o In usr.bin/uuidgen/uuidgen.c catch up with struct uuid change. A note about byte-order: The standard failed to provide a non-conflicting and unambiguous definition for the binary representation. My initial implementation always wrote the timestamp as a 64-bit little-endian (2s-complement) integral. The clock sequence was always written as a 16-bit big-endian (2s-complement) integral. After a good nights sleep and couple of Pan Galactic Gargle Blasters (not necessarily in that order :-) I reread the spec and came to the conclusion that the time fields are always written in the native by order, provided the the low, mid and hi chopping still occurs. The spec mentions that you "might need to swap bytes if you talk to a machine that has a different byte-order". The clock sequence is always written in big-endian order (as is the IEEE 802 address) because its division is resulting in bytes, making the ordering unambiguous.
* Correct a check for NUL.robert2002-05-271-1/+1
| | | | Spotted by: bde
* - Move the loop conditional into the "for" header.robert2002-05-271-19/+17
| | | | | | | | - Remove redundant "? :" construct. style(9): - Place a space after return statements. - Compare pointers to NULL. - Do not use ! to compare a character to nul.
* Remove spurious period.dd2002-05-271-1/+1
|
* Remove extra word.dd2002-05-261-1/+1
| | | | Submitted by: Andre Guibert de Bruet <andy@siliconlandmark.com>
* Add openpam_nullconv.3.des2002-05-241-0/+1
|
* Add missing include.des2002-05-241-0/+1
|
* These files are no longer used.jake2002-05-2411-196/+0
|
* Revamp suspend and resume. While I'm here add pthread_suspend_all_np()deischen2002-05-2439-921/+693
| | | | | | | | | | | | | and pthread_resume_all_np(). These suspend and resume all threads except the current thread, respectively. The existing functions pthread_single_np() and pthread_multi_np(), which formerly had no effect, now exhibit the same behaviour and pthread_suspend_all_np() and pthread_resume_all_np(). These functions have been added mostly for the native java port. Don't allow the uthread kernel pipe to use the same descriptors as stdio. Mostily submitted by Oswald Buddenhagen <ossi@kde.org>. Correct some minor style nits.
* Generate the normal asm stubs for all sysv system calls. Use these insteadjake2002-05-237-33/+18
| | | | | | | of C wrappers for the *sys indirect system calls. The indirect system calls are horribly broken on sparc64. Submitted by: tmm
* Just to show that PAM can do almost anything from the ridiculous to thedes2002-05-237-0/+418
| | | | | | | obscene, or - as they say in New York - sophisticated, add pam_echo(8) and pam_exec(8) to our ever-lengthening roster of PAM modules. Sponsored by: DARPA, NAI Labs.
OpenPOWER on IntegriCloud