summaryrefslogtreecommitdiffstats
path: root/share/man/man9/malloc.9
Commit message (Collapse)AuthorAgeFilesLines
* Return bits which were removed in revision 1.28.trhodes2003-02-241-0/+19
| | | | Requested by: imp
* The .Fn functioncharnier2003-02-051-4/+7
|
* Catch up to WAIT/NOWAIT cleanup.alfred2003-01-211-19/+0
|
* Add required commas that were ommitted in the previous delta; thesheldonh2003-01-191-1/+1
| | | | SEE ALSO section's list of manual pages must be comma-separated.
* Document lock order reversals possible when calling allocation functionsalfred2003-01-181-0/+16
| | | | | | | | | | | with vnode interlocks held. Emphasize that users need to be careful with malloc flags versus mbuf flags. Remove stale portion in vnode.9 about v_tag. We don't have it anylonger. Submitted by: Hiten Pandya <hiten@unixdaemons.com>
* Caution programmers not to confuse M_DONTWAIT with M_NOWAIT. Theyrwatson2003-01-181-0/+11
| | | | | | are not the same. Suggested by: Hiten Pandya <hiten@unixdaemons.com>
* Spelling: s/then/than/ where appropriate.ru2002-12-241-1/+1
|
* mdoc(7) police: fixed some wording, kill whitespace at EOL.ru2002-03-181-4/+6
|
* Add realloc() and reallocf(), and make free(NULL, ...) acceptable.archie2002-03-131-11/+74
| | | | Reviewed by: alfred
* mdoc(7) police: Use the new .In macro for #include statements.ru2001-10-011-2/+2
|
* Spelling fix: depreciated -> deprecated.jhb2001-08-231-1/+1
|
* Remove refernces to M_ASLEEP/asleep/await.jhb2001-08-231-28/+1
|
* Removed whitespace at end-of-line; no content changes. I simply didschweikh2001-07-141-9/+9
| | | | | | | | | | cd src/share; find man[1-9] -type f|xargs perl -pi -e 's/[ \t]+$//' BTW, what editors are the culprits? I'm using vim and it shows me whitespace at EOL in troff files with a thick blue block... Reviewed by: Silence from cvs diff -b MFC after: 7 days
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* mdoc(7) police: Removed extraneous .No call. The .Nm macro inru2001-02-071-1/+1
| | | | | mdocNG has been fixed to properly handle its arguments so this was causing the extraneous (undesirable) space.
* Prepare for mdoc(7)NG.ru2000-12-291-1/+1
|
* Introduce the M_ZERO flag to malloc(9)phk2000-10-201-0/+2
| | | | | | | | | | | | | | Instead of: foo = malloc(sizeof(foo), M_WAIT); bzero(foo, sizeof(foo)); You can now (and please do) use: foo = malloc(sizeof(foo), M_WAIT | M_ZERO); In the future this will enable us to do idle-time pre-zeroing of malloc-space.
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-031-1/+2
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* Bring kernel malloc documentation up to date, including the example.dillon1999-09-291-9/+16
| | | | PR: docs/10059
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-121-0/+2
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Fix some typos and do some minor mdoc cleanup.mpp1999-06-271-1/+1
|
* Removed occurrences of consecutive repeated words (such as "the the").alex1999-02-121-1/+1
|
* M_AWAIT changed to M_ASLEEPdillon1998-12-231-3/+3
|
* Documentation update for new M_AWAIT flag to kernel malloc, plus revampdillon1998-12-231-12/+50
| | | | the descriptions of the flags and return value.
* Fix argument reversal in example.phk1998-07-021-1/+1
| | | | | | PR: 7138 Reviewed by: phk Submitted by: Robert Watson <robert+freebsd@cyrus.watson.org>
* Fix a few typos.jraynard1998-02-281-1/+1
|
* Fixed a missing #include in the synopsis.bde1998-01-161-0/+1
|
* Update malloc.9 to reflect new reality.phk1997-10-111-106/+31
|
* Add malloc(9) to document the kernel malloc() and free() routines.mpp1997-03-221-0/+262
Obtained from: NetBSD w/changes to reflect current FreeBSD headers and diagnostic messages.
OpenPOWER on IntegriCloud