diff options
author | 2021-02-11 08:17:03 +0200 | |
---|---|---|
committer | 2021-02-11 08:17:03 +0200 | |
commit | 4a14ab7ab48e3fd591dde33d59c6d29fc39f1c5d (patch) | |
tree | 8d4e527e4a8ad76819e3baa1b89441eeb1081f15 /src/cache.h | |
parent | 41efe7b8f9f67d5956ab677f3631478c48114ac1 (diff) | |
download | algos-ld1-4a14ab7ab48e3fd591dde33d59c6d29fc39f1c5d.tar.gz algos-ld1-4a14ab7ab48e3fd591dde33d59c6d29fc39f1c5d.tar.bz2 algos-ld1-4a14ab7ab48e3fd591dde33d59c6d29fc39f1c5d.zip |
continue the overhaul.
we can finally create a basic array input data file too!
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'src/cache.h')
-rw-r--r-- | src/cache.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cache.h b/src/cache.h index 9f333d3..055a686 100644 --- a/src/cache.h +++ b/src/cache.h @@ -9,15 +9,14 @@ #include "defs.h" /* INIT|DESTROY */ -int cache_create(struct stream * const in, const struct settings * const restrict s); +int cache_create(struct stream * const in); int cache_populate(struct stream * const in); -int cache_flush(struct stream * const in); int cache_destroy(struct stream * const in); /* BLOCKMANIP */ int cache_transfer(struct stream * const src, struct stream * const dest); -int cache_block_copy(struct stream const * const src, struct stream * const dest, const struct settings * const s); -int cache_list_copy(struct stream const * const src, struct stream * const dest, const struct settings * const s); +int cache_block_copy(struct stream const * const src, struct stream * const dest); +int cache_list_copy(struct stream const * const src, struct stream * const dest); int cache_block_split(struct stream * const src, struct stream * const A, struct stream * const B); int cache_list_split(struct stream * const src, struct stream * const A, struct stream * const B); |