diff options
Diffstat (limited to 'libhurd-mm/capalloc.h')
-rw-r--r-- | libhurd-mm/capalloc.h | 33 |
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 */ |