summaryrefslogtreecommitdiffstats
path: root/src/defs.h
diff options
context:
space:
mode:
authorGravatar Gediminas Jakutis <gediminas@varciai.lt> 2021-02-28 22:31:36 +0200
committerGravatar Gediminas Jakutis <gediminas@varciai.lt> 2021-02-28 22:31:36 +0200
commitd249b69a55f9bf1f3a97627f9cc26bb1cdf673b5 (patch)
tree3d789019de0b5ae8aa1133ac2473a26a855059eb /src/defs.h
parent7f522688e215c437b945b85820691e6488d4625e (diff)
downloadalgos-ld1-d249b69a55f9bf1f3a97627f9cc26bb1cdf673b5.tar.gz
algos-ld1-d249b69a55f9bf1f3a97627f9cc26bb1cdf673b5.tar.bz2
algos-ld1-d249b69a55f9bf1f3a97627f9cc26bb1cdf673b5.zip
now with cached list handling!
Implemented the last two cached list handling functions required to get this party started. Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/defs.h b/src/defs.h
index a0d61cd..faaecd8 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -48,6 +48,7 @@
union nextoff {
struct entry_l *next;
+ void *nextaddr;
ptrdiff_t offset;
int64_t spacer; /* make sure it is 8-byte-alligned on 32 bit pointer systems */
};