diff options
| author | Jason Evans <jasone@FreeBSD.org> | 2008-03-07 16:54:03 +0000 | 
|---|---|---|
| committer | Jason Evans <jasone@FreeBSD.org> | 2008-03-07 16:54:03 +0000 | 
| commit | f2ec9c0c86903c3e87813b0ed86d85ec9b2943ee (patch) | |
| tree | 0a6024dc541b7f5231b93b4d8202b5a9906ba448 /lib/libc/stdlib/malloc.c | |
| parent | b9175c45567050239120a8eca62ab33c4698cfb2 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdlib/malloc.c')
| -rw-r--r-- | lib/libc/stdlib/malloc.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 1e85a34d2e26..0d10b06240c1 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -45,7 +45,8 @@   * Allocation requests are rounded up to the nearest size class, and no record   * of the original request size is maintained.  Allocations are broken into   * categories according to size class.  Assuming runtime defaults, 4 kB pages - * and a 16 byte quantum, the size classes in each category are as follows: + * and a 16 byte quantum on a 32-bit system, the size classes in each category + * are as follows:   *   *   |=====================================|   *   | Category | Subcategory    |    Size | @@ -69,9 +70,9 @@   *   |                           |    8 kB |   *   |                           |   12 kB |   *   |                           |     ... | + *   |                           | 1004 kB | + *   |                           | 1008 kB |   *   |                           | 1012 kB | - *   |                           | 1016 kB | - *   |                           | 1020 kB |   *   |=====================================|   *   | Huge                      |    1 MB |   *   |                           |    2 MB | @@ -145,7 +146,6 @@ __FBSDID("$FreeBSD$");  #include <sys/uio.h>  #include <sys/ktrace.h> /* Must come after several other sys/ includes. */ -#include <machine/atomic.h>  #include <machine/cpufunc.h>  #include <machine/vmparam.h> | 
