summaryrefslogtreecommitdiff
path: root/libstore/remap.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-09-23 16:57:07 +0000
committerMiles Bader <miles@gnu.org>1996-09-23 16:57:07 +0000
commit68e309cd0b1554152c57fdc8ab367469e4d7cb83 (patch)
treece8e691053aceb7e723a9e9305938b1b4420eae7 /libstore/remap.c
parent3f7736a99d36d8660ca6f5e9201cd4fedbdf9daa (diff)
(store_remap_class):
Renamed from remap_class; export. (remap_decode): Make CLASSES arg const.
Diffstat (limited to 'libstore/remap.c')
-rw-r--r--libstore/remap.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/libstore/remap.c b/libstore/remap.c
index 4bc02c31..e314fc56 100644
--- a/libstore/remap.c
+++ b/libstore/remap.c
@@ -65,7 +65,7 @@ remap_encode (const struct store *store, struct store_enc *enc)
}
error_t
-remap_decode (struct store_enc *enc, struct store_class *classes,
+remap_decode (struct store_enc *enc, const struct store_class *const *classes,
struct store **store)
{
if (enc->cur_int + 3 > enc->num_ints)
@@ -87,13 +87,12 @@ remap_decode (struct store_enc *enc, struct store_class *classes,
}
}
-static struct store_class
-remap_class =
+struct store_class
+store_remap_class =
{
STORAGE_REMAP, "remap", remap_read, remap_write,
remap_allocate_encoding, remap_encode, remap_decode
};
-_STORE_STD_CLASS (remap_class);
/* Return a new store in STORE that reflects the blocks in RUNS & RUNS_LEN
from SOURCE; SOURCE is consumed, but RUNS is not. Unlike the
@@ -107,7 +106,7 @@ store_remap_create (struct store *source,
{
error_t err;
- *store = _make_store (&remap_class, MACH_PORT_NULL, flags,
+ *store = _make_store (&store_remap_class, MACH_PORT_NULL, flags,
source->block_size, runs, num_runs, 0);
if (! *store)
return ENOMEM;