aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/zone.9
Commit message (Collapse)AuthorAgeFilesLines
* Fix various typos in manual pages.Glen Barber2012-02-251-2/+2
| | | | | | | | | Submitted by: amdmi3 PR: 165431 MFC after: 1 week Notes: svn path=/head/; revision=232157
* Globally replace u_int*_t from (non-contributed) man pages.Ed Schouten2012-02-121-1/+1
| | | | | | | | | | | | | | The reasoning behind this, is that if we are consistent in our documentation about the uint*_t stuff, people will be less tempted to write new code that uses the non-standard types. I am not going to bump the man page dates, as these changes can be considered style nits. The meaning of the man pages is unaffected. MFC after: 1 month Notes: svn path=/head/; revision=231564
* Re-encode files from ISO-8859-1 to UTF-8Ulrich Spörlein2011-05-221-1/+1
| | | | Notes: svn path=/head/; revision=222176
* uma_zfree(zone, NULL) should do nothing, to match free(9).Matthew D Fleming2010-10-191-0/+7
| | | | | | | | Noticed by: Ron Steinke <rsteinke at isilon dot com> MFC after: 3 days Notes: svn path=/head/; revision=214062
* Change uma_zone_set_max to return the effective value of "nitems" afterLawrence Stewart2010-10-161-4/+4
| | | | | | | | | | | rounding. The same value can also be obtained with uma_zone_get_max, but this change avoids a caller having to make two back-to-back calls. Sponsored by: FreeBSD Foundation Reviewed by: gnn, jhb Notes: svn path=/head/; revision=213911
* - Simplify implementation of uma_zone_get_max.Lawrence Stewart2010-10-161-9/+30
| | | | | | | | | | | | - Add uma_zone_get_cur which returns the current approximate occupancy of a zone. This is useful for providing stats via sysctl amongst other things. Sponsored by: FreeBSD Foundation Reviewed by: gnn, jhb MFC after: 2 weeks Notes: svn path=/head/; revision=213910
* Document the _arg versions of the uma_zalloc and uma_zfree functions.Remko Lodder2008-06-191-1/+18
| | | | | | | | | PR: docs/120357 Submitted by: gahr MFC after: 3 days Notes: svn path=/head/; revision=179880
* Bump document date for the previous change.Ruslan Ermilov2006-10-211-1/+1
| | | | Notes: svn path=/head/; revision=163577
* Remove long untrue note about storing state information inside free items.Konstantin Belousov2006-10-021-19/+1
| | | | | | | | | OKed by: rwatson, tegge Approved by: pjd (mentor) MFC after: 1 week Notes: svn path=/head/; revision=162946
* I don't normally use my middle name, so remove it from attributions inDag-Erling Smørgrav2004-01-251-1/+1
| | | | | | | | man pages (though not from copyright notices). While I'm here, add email addresses where appropriate. Notes: svn path=/head/; revision=124963
* Document uma_zone_set_max and its non-obvious behaviour.Hartmut Brandt2003-07-211-2/+21
| | | | | | | Reviewed by: bmilekic Notes: svn path=/head/; revision=117836
* Various mdoc(7) fixes:Hiten Pandya2003-05-311-1/+1
| | | | | | | | | | | Add devfs(5) reference - make_dev.9 Change .Xr from VFS_VGET(9) to vget(9) - vnode.9 Spelling fix, 'useage' to 'usage' - zone.9 Approved by: des (mentor) Notes: svn path=/head/; revision=115441
* mdoc(7) police: scheduled sweep.Ruslan Ermilov2002-11-291-7/+16
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107383
* Flesh out the description of the uma_zcreate callback function arguementsAlfred Perlstein2002-11-181-0/+35
| | | | | | | a bit. As there may be changes soon we're still a bit vague unfortunatly. Notes: svn path=/head/; revision=107032
* mdoc(7) police: Fix SYNOPSIS, bump document date.Ruslan Ermilov2002-05-301-7/+9
| | | | Notes: svn path=/head/; revision=97578
* Add description for uma_zcreate().Jeroen Ruigrok van der Werven2002-05-181-0/+12
| | | | | | | Submitted by: arr Notes: svn path=/head/; revision=96852
* Chase the sources and document the change of wait to flags, which areJeroen Ruigrok van der Werven2002-04-301-8/+4
| | | | | | | | | the normal malloc(9) flags. Submitted by: arr Notes: svn path=/head/; revision=95805
* Remove references to zinit() which does not exist anymore.Jeroen Ruigrok van der Werven2002-04-301-13/+2
| | | | Notes: svn path=/head/; revision=95802
* Document the zone allocator is now a slab allocator.Jeroen Ruigrok van der Werven2002-04-301-0/+8
| | | | | | | Show Jeff's work and your's truly manual page updates. Notes: svn path=/head/; revision=95800
* Document uma_zalloc() behaviour.Jeroen Ruigrok van der Werven2002-04-301-2/+15
| | | | Notes: svn path=/head/; revision=95798
* Update function arguments to what is current used.Jeroen Ruigrok van der Werven2002-04-301-3/+3
| | | | Notes: svn path=/head/; revision=95796
* Prefix the remaining functions with uma_ as is now the case in UMA.Jeroen Ruigrok van der Werven2002-04-301-12/+12
| | | | Notes: svn path=/head/; revision=95795
* zinit() does not exist anymore.Jeroen Ruigrok van der Werven2002-04-301-33/+0
| | | | Notes: svn path=/head/; revision=95794
* Remove references to zbootinit() and zinitna().Jeroen Ruigrok van der Werven2002-04-301-54/+1
| | | | Notes: svn path=/head/; revision=95787
* Do not use a contraction, aren't -> are not.Jeroen Ruigrok van der Werven2002-04-301-1/+1
| | | | Notes: svn path=/head/; revision=95784
* Remove wrong include, one is supposed to include vm/uma.h instead ofJeroen Ruigrok van der Werven2002-04-301-1/+1
| | | | | | | vm_zone.h. Notes: svn path=/head/; revision=95777
* mdoc(7) police: get rid of WEOL and HSB introduced in rev 1.6.Ruslan Ermilov2002-01-101-3/+4
| | | | Notes: svn path=/head/; revision=89206
* Update function definitions and required include files to reflectChad David2001-12-261-0/+1
| | | | | | | | | the current state of the system. Approved by: alfred Notes: svn path=/head/; revision=88509
* Make the man page reflec t the code a bit better.Julian Elischer2001-12-141-2/+11
| | | | | | | | Specifically, note the condition of the memory on initial and subsequent allocations is different. Notes: svn path=/head/; revision=87907
* mdoc(7) police: Use the new .In macro for #include statements.Ruslan Ermilov2001-10-011-2/+2
| | | | Notes: svn path=/head/; revision=84306
* mdoc(7) police: add zdestroy() to NAME.Ruslan Ermilov2001-08-101-1/+2
| | | | Notes: svn path=/head/; revision=81433
* Document zdestroy().Thomas Moestl2001-08-091-0/+15
| | | | | | | Reviewed by: des Notes: svn path=/head/; revision=81360
* Fixed missing and/or wrong and/or extra includes in synopsis.Bruce Evans2001-02-151-1/+1
| | | | Notes: svn path=/head/; revision=72512
* Style police.Dag-Erling Smørgrav2001-01-291-5/+5
| | | | | | | Submitted by: ru Notes: svn path=/head/; revision=71783
* Add a man page for the zone allocator.Dag-Erling Smørgrav2001-01-271-0/+191
Notes: svn path=/head/; revision=71714