comparison src/ralloc.c @ 458:c33ae14dd6d0 r21-2-44

Import from CVS: tag r21-2-44
author cvs
date Mon, 13 Aug 2007 11:42:25 +0200
parents abe6d1db359e
children 183866b06e0b
comparison
equal deleted inserted replaced
457:4b9290a33024 458:c33ae14dd6d0
1436 struct alloc_dll *right; 1436 struct alloc_dll *right;
1437 } *MMAP_HANDLE; 1437 } *MMAP_HANDLE;
1438 1438
1439 static MMAP_HANDLE mmap_start = 0; /* Head of linked list */ 1439 static MMAP_HANDLE mmap_start = 0; /* Head of linked list */
1440 static size_t page_size = 0; /* Size of VM pages */ 1440 static size_t page_size = 0; /* Size of VM pages */
1441 static int mmap_hysteresis; /* Should be size_t, really. */ 1441 static Fixnum mmap_hysteresis; /* Logically a "size_t" */
1442 1442
1443 /* Get a new handle for a fresh block. */ 1443 /* Get a new handle for a fresh block. */
1444 static MMAP_HANDLE 1444 static MMAP_HANDLE
1445 new_mmap_handle (size_t nsiz) 1445 new_mmap_handle (size_t nsiz)
1446 { 1446 {