diff options
author | June McEnroe <june@causal.agency> | 2017-08-02 00:55:52 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-08-02 00:55:52 -0400 |
commit | 9595969f2e916e800ec029623305920e11ef182b (patch) | |
tree | d8268b6e015cce74a71523114afc5d2dd5c50e2b /torus.h | |
parent | Madvise RANDOM and NOSYNC (diff) | |
download | torus-9595969f2e916e800ec029623305920e11ef182b.tar.gz torus-9595969f2e916e800ec029623305920e11ef182b.zip |
Split tile access and modify
Diffstat (limited to '')
-rw-r--r-- | torus.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/torus.h b/torus.h index 9158ef7..6b28f8c 100644 --- a/torus.h +++ b/torus.h @@ -27,10 +27,12 @@ enum { struct Tile { time_t create; - time_t access; + time_t modify; char cells[CELL_ROWS][CELL_COLS] ALIGNED(16); uint8_t colors[CELL_ROWS][CELL_COLS] ALIGNED(16); + uint32_t modifyCount; uint32_t accessCount; + time_t access; } ALIGNED(4096); static_assert(sizeof(struct Tile) == 4096, "struct Tile is page-sized"); static_assert(offsetof(struct Tile, cells) == 16, "stable cells offset"); |