summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* Create the links for the reentrant time functions.nik2000-11-121-1/+3
| | | | | PR: docs/22644 Submitted by: andrew@ugh.net.au
* Correct description of KERN_PROC. Add description of KERN_PROC_ARGS.abial2000-11-111-2/+13
|
* Increase the size of the mktemp() filename space by dropping the PID fromkris2000-11-101-25/+17
| | | | | | | | | | | | | the encoding and using the character set [a-zA-Z0-9]. This gives a total of 62^6 = 56800235584 possible temporary filenames for the usual default invocation of 6 X's (compared to as few as 52 possibilities for the previous algorithm where up to 5 characters were wasted by the PID). Update some apparently bitrotten comments to reflect reality. Audited by: eivind, freebsd-audit Reviewed by: freebsd-current (a while ago) Originally submitted by: Peter Jeremy <Peter.Jeremy@alcatel.com.au>
* remove outdated bugs, we actually do have aio_cancel supportalfred2000-11-102-4/+1
| | | | as well as support for the field aio_offset in the aiocb structure.
* Fix passwd entry `prototypes' in compat mode. I broke this in revisionnectar2000-11-101-34/+16
| | | | | | 1.55 when importing nsswitch from NetBSD. Reported by: Naoki Kobayashi <shibata@geo.titech.ac.jp>
* Avoid use of direct troff requests in mdoc(7) manual pages.ru2000-11-1012-35/+21
|
* Use size_t rather than a 16-bit data type fo the length.obrien2000-11-071-1/+5
| | | | | PR: 9350 Submitted by: Danny J. Zerkel <dzerkel@columbus.rr.com>
* Fixed typos.ru2000-11-061-4/+4
|
* More secure temporary filename. This needs to be revisited to usekris2000-11-021-1/+1
| | | | mkstemp().
* Fix nits introduced in rev 1.9:sheldonh2000-10-301-2/+4
| | | | | Remove single-space hard sentence break. Mark errno up as a Variable (Va).
* Replace old sigaction struct declaration with the new one as presentasmodai2000-10-301-12/+8
| | | | | | | | | | in <sys/signal.h>. This might be a shortterm fix until the manpage is updated towards POSIX terminology. And maybe not... PR: 21542 Submitted by: Ronald F. Guilmette <rfg@monkeys.com>
* Correct incorrect information about the PATH used for exec*() calls.asmodai2000-10-301-4/+7
| | | | | PR: 21990 Partially submitted by: Gerhard Sittig <Gerhard.Sittig@gmx.net>
* Whitespace only change: trim trailing whitespace.asmodai2000-10-3054-186/+186
|
* Fix memory leak.sumikawa2000-10-291-0/+2
| | | | Obtained from: KAME
* Back out previous commit (MLINK malloc.conf.5 -> malloc.3).eivind2000-10-291-1/+0
| | | | | | This did not work correctly with whatis(1). Issue brought up by: mpp
* Add link malloc.conf.5 -> malloc.3eivind2000-10-291-0/+1
|
* Style & grammar fixes.mpp2000-10-281-3/+7
| | | | PR: docs/22374, docs/13020
* defined HAVE_IFM_DATA for (free|net|open)bsdume2000-10-281-0/+5
| | | | | Submitted by: JINMEI Tatuya <jinmei@isl.rdc.toshiba.co.jp> Obtained from: KAME Project
* Explicitly initialize _pw_passwd.nectar2000-10-271-1/+1
|
* Make RES_OPTIONS=inet6 work.ume2000-10-271-0/+4
| | | | | | Basically PR22196, but slightly modified. PR: bin/22196
* For %c replace reference to asctime(3) with ctime(3) from which %c geneticallyache2000-10-261-1/+1
| | | | originates
* Treat c_fmt field as compatibility placeholderache2000-10-262-5/+3
|
* Force "%c" to be ctime-compatibleache2000-10-261-1/+2
| | | | Submitted by: ru
* Force %c to be "%a %Ef %T %Y" to eliminate problems with bad c_fmtache2000-10-262-5/+6
| | | | Submitted by: ru
* Describe %c betterache2000-10-241-3/+7
| | | | Submitted by: ru (with modifications)
* Correct the text on RETURN VALUES.n_hibma2000-10-201-1/+3
|
* Return zero from setjmp() and _setjmp() for now.dfr2000-10-162-0/+5
|
* Fix a couple of dumb mistakes.dfr2000-10-161-7/+9
|
* Fix RAW dependency violation on p6 between cmp and mov.marcel2000-10-152-0/+2
|
* Initial libc port for ia64.dfr2000-10-1445-0/+3022
|
* Document the ptrace() PT_STEP request.jwd2000-10-141-1/+10
| | | | | | | | Add references to the newly added hardware debug register support functions i386_clr_watch(3) and i386_set_watch(3). Reviewed by: Sean Eric Fagan <sef@kithrup.com> and no other response to the review request.
* o Introduce cap_from_text() and cap_to_text() implementations.rwatson2000-10-132-1/+573
| | | | | | Reviewed by: green Obtained from: TrustedBSD Project Security audited by: imp, green
* o Simplify capability types away from an array of ints to a singlerwatson2000-10-132-8/+10
| | | | | | | | | | | | | | | | | | u_int64_t flag field, bounding the number of capabilities at 64, but substantially cleaning up capability logic (there are currently 43 defined capabilities). o Heads up to anyone actually using capabilities: the constant assignments for various capabilities have been redone, so any persistent binary capability stores (i.e., '$posix1e.cap' EA backing files) must be recreated. If you have one of these, you'll know about it, so if you have no idea what this means, don't worry. o Update libposix1e to reflect this new definition, fixing the exposed functions that directly manipulate the flags fields. Obtained from: TrustedBSD Project
* o Update BUGS entry to indicate in a more precise manner the implementationrwatson2000-10-129-23/+15
| | | | | | | status of capabilities (library is complete, kernel work is maintained outside the tree). Obtained from: TrustedBSD Project
* Fix pthread cancellation point propagation.jasone2000-10-121-5/+5
|
* o Introduce a MAINTAINER entry for libposix1e, since it is activelyrwatson2000-10-021-0/+1
| | | | developed and maintained.
* Use issetugid instead of comparing get[ug]id and gete[ug]id.nectar2000-09-301-5/+2
| | | | Suggested by: Don Lewis <Don.Lewis@tsc.tdk.com>
* Ignore HESIOD_CONFIG and HES_DOMAIN environmental variables fornectar2000-09-291-2/+12
| | | | | | set-user-ID and set-group-ID programs. Suggested by: Danny Braniss <danny@cs.huji.ac.il>
* Add man pages for mod*(2). Shamelessly cut/pasted from the kld*(2) manpeter2000-09-2810-0/+307
| | | | pages by Chris Costello.
* Fix typophantom2000-09-271-1/+1
| | | | | PR: misc/21596 Submitted by: TOGAWA Satoshi <toga@puyo.org>
* off-by-1 error in string length validationitojun2000-09-251-7/+6
| | | | From: Pavel Kankovsky <peak@argo.troja.mff.cuni.cz>
* o Minor whitespace, comment cleanupsrwatson2000-09-221-27/+14
| | | | | | | o Removal of unneeded enum o Removal of commented out debugging printf()'s. Obtained from: TrustedBSD Project
* Better documentation of append mode. This should have gone in -currenteivind2000-09-221-0/+8
| | | | | | directly. Now also .Xr fseek reference. Prodded by: sheldonh
* Resurrect documentation of chflags(2)'s SF_ARCHIVED.rse2000-09-221-2/+2
| | | | | PR: 21428 Reviewed by: ben
* Add a couple of debug register helper functions to assist in settingbsd2000-09-215-4/+249
| | | | | | and clearing watchpoints. Reviewed by: jwd@FreeBSD.org, -hackers@
* Oops, un-spam this file - the last commit was an accident.brian2000-09-201-1/+0
| | | | Pointed out by: phk
* Only realloc() environ if we're sure that we know where it came from.brian2000-09-202-5/+5
| | | | | | The recent problems with sshd were due to sshd reassigning `environ' when setenv() thinks it owns it. setenv() subsequently realloc()s the new version of environ and *boom*
* o Whitespace reduction appled to FreeBSD CVS IDrwatson2000-09-191-1/+1
| | | | Obtained from: TrustedBSD Project
* o General warning fixing commitrwatson2000-09-197-9/+6
| | | | | | | | - Include <stdlib.h> and <string.h> as needed for prototypes - Remove unneeded "error" variables o Make cap_init() use cap_clear() instead of bzero() Obtained from: TrustedBSD Project
* o Add cap_from_text(3) and cap_to_text(3) man pages.rwatson2000-09-193-0/+232
| | | | | | | o Implementations will remain in the seperately distributed capability patch until the cap_t type changes are synchronized. Obtained from: TrustedBSD Project
OpenPOWER on IntegriCloud