summaryrefslogtreecommitdiff
path: root/libhurd-mm/capalloc.h
diff options
context:
space:
mode:
authorneal <neal>2007-11-16 14:18:05 +0000
committerneal <neal>2007-11-16 14:18:05 +0000
commita4efc641a17b5ea8707c649a01b1985fa77046ea (patch)
treeafb02e6a85015c96102d30b8809edd433420991b /libhurd-mm/capalloc.h
parente46ff816c662bc8b47dfc00bbe5501dbeffd93bb (diff)
2007-11-16 Neal H. Walfield <neal@gnu.org>
* Makefile.am (includehurd_HEADERS): Remove vm.h. Add storage.h and as.h. (AM_CPPFLAGS): Rename from this... (COMMON_CPPFLAGS): ... to this. (libhurd_mm_a_SOURCES): Remove vm.h, vm.c, priv.h, store.c, map.c, memory.c, pager.c, core.c, anonymous.c, anonymous.h, physmem-user.h and physmem-user.c. Add capalloc.h, capalloc.c, storage.h, storage.c, as.h and mmap.c. * headers.m4: Don't link $(BUILDDIR)/include/hurd/vm.h to vm.h or $(BUILDDIR)/include/hurd/anonymous.h to anonymous.h. Link $(BUILDDIR)/include/hurd/as.h to as.h, $(BUILDDIR)/include/hurd/storage.h to storage.h, and $(BUILDDIR)/include/hurd/capalloc.h to libhurd-mm/capalloc.h. * mm-init.c: Rewrite. * mm.h: Likewise. * as.c: Likewise. * as.h: New file. * capalloc.h: Likewise. * capalloc.c: Likewise. * mmap.c: Likewise. * storage.h: Likewise. * storage.c: Likewise. * physmem-user.h: Remove file. * physmem-user.c: Remove file.
Diffstat (limited to 'libhurd-mm/capalloc.h')
-rw-r--r--libhurd-mm/capalloc.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/libhurd-mm/capalloc.h b/libhurd-mm/capalloc.h
new file mode 100644
index 0000000..77d6359
--- /dev/null
+++ b/libhurd-mm/capalloc.h
@@ -0,0 +1,33 @@
+/* capalloc.h - Capability allocation functions.
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Written by Neal H. Walfield <neal@gnu.org>.
+
+ This file is part of the GNU Hurd.
+
+ The GNU Hurd is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ The GNU Hurd is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with the GNU C Library; if not, write to the Free
+ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+ 02111-1307 USA. */
+
+#ifndef _HURD_CAP_ALLOC_H
+#define _HURD_CAP_ALLOC_H
+
+#include <hurd/addr.h>
+
+/* Allocate a capability slot. */
+extern addr_t capalloc (void);
+
+/* Free a capability previously allocated by capalloc. */
+extern void capfree (addr_t cap);
+
+#endif /* _HURD_CAP_ALLOC_H */