aboutsummaryrefslogtreecommitdiff
path: root/lib/libstand/zalloc_mem.h
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1998-09-26 01:42:40 +0000
committerMike Smith <msmith@FreeBSD.org>1998-09-26 01:42:40 +0000
commit95b50c2be3e92fdea36bf33f52920bea1a87d3a5 (patch)
tree38b9b44d383cad45118cba2250f16d7dd0ba3d7f /lib/libstand/zalloc_mem.h
parent4f75af298ceadc1adfe0ddc15a82fa3d137391c8 (diff)
downloadsrc-95b50c2be3e92fdea36bf33f52920bea1a87d3a5.tar.gz
src-95b50c2be3e92fdea36bf33f52920bea1a87d3a5.zip
Replace the old and extremely icky Mach/NetBSD allocator with a similarly
compact and much better one donated by Matt Dillon. Implement a simple sbrk() which uses the existing setheap() api. Remove the custom allocator from the UFS code. It wasn't working quite right, and it shouldn't be needed with the new allocator. Fix a serious problem with changing the value of already-existent environment variables. Don't attempt to modify the supposedly-const argument to putenv() Fix an off-by-one sizing error in the zipfs code detected by the new allocator. Submitted by: zmalloc from Matt Dillon <dillon@backplane.com>
Notes
Notes: svn path=/head/; revision=39665
Diffstat (limited to 'lib/libstand/zalloc_mem.h')
-rw-r--r--lib/libstand/zalloc_mem.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/lib/libstand/zalloc_mem.h b/lib/libstand/zalloc_mem.h
new file mode 100644
index 000000000000..8655e7b6b9bc
--- /dev/null
+++ b/lib/libstand/zalloc_mem.h
@@ -0,0 +1,60 @@
+/*
+ * This module derived from code donated to the FreeBSD Project by
+ * Matthew Dillon <dillon@backplane.com>
+ *
+ * Copyright (c) 1998 The FreeBSD Project
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * $Id$
+ */
+
+/*
+ * H/MEM.H
+ *
+ * Basic memory pool / memory node structures.
+ */
+
+typedef struct MemNode {
+ struct MemNode *mr_Next;
+ iaddr_t mr_Bytes;
+} MemNode;
+
+typedef struct MemPool {
+ const char *mp_Ident;
+ void *mp_Base;
+ void *mp_End;
+ MemNode *mp_First;
+ void (*mp_Panic)(const char *ctl, ...);
+ int (*mp_Reclaim)(struct MemPool *memPool, iaddr_t bytes);
+ iaddr_t mp_Size;
+ iaddr_t mp_Used;
+} MemPool;
+
+#define MEMNODE_SIZE_MASK ((sizeof(MemNode) <= 8) ? 7 : 15)
+
+#define INITPOOL(name,panic,reclaim) { name, NULL, NULL, NULL, panic, reclaim }
+
+#define ZNOTE_FREE 0
+#define ZNOTE_REUSE 1
+