diff options
author | Miles Bader <miles@gnu.org> | 1997-07-21 22:41:13 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-07-21 22:41:13 +0000 |
commit | 0d192a78fa198f3b0f9172f19770b15aa3cbd499 (patch) | |
tree | e52d34d80e5377f33d0f78160ef4c1c2a165956c | |
parent | bff3ee28fe3662f75db6532636144a4460565c31 (diff) |
(store_map_source):
Declaration removed.
-rw-r--r-- | libstore/store.h | 9 |
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, ..., |