summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libstore/store.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/libstore/store.h b/libstore/store.h
index 1a7fe2a0..8e0dd524 100644
--- a/libstore/store.h
+++ b/libstore/store.h
@@ -307,16 +307,11 @@ void store_close_source (struct store *store);
/* Return a memory object paging on STORE. If this call fails with
EOPNOTSUPP, you can try calling some of the routines below to get a pager. */
-error_t store_map (const struct store *store, vm_prot_t prot, mach_port_t *memobj);
+error_t store_map (const struct store *store, vm_prot_t prot,
+ mach_port_t *memobj);
#if 0
-/* Returns a memory object paging on the file from which STORE was created.
- If STORE wasn't created using store_create, or the source was destroyed
- using store_close_source, this will fail. */
-error_t store_map_source (struct store *store, vm_prot_t prot, ...,
- mach_port_t *memobj)
-
/* Create a new pager and paging threads paging on STORE, and return the
resulting memory object in PAGER. */
error_t store_create_pager (struct store *store, vm_prot_t prot, ...,