about summary refs log tree commit diff homepage
path: root/torus.h
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-07-30 14:15:15 -0400
committerJune McEnroe <programble@gmail.com>2017-07-30 14:15:15 -0400
commita97f4ebf9f2b976e78282928704d6d39768b8362 (patch)
treef56997d486e7511ab3eddb23c2e6d0ddee844c56 /torus.h
parentAssert stable struct Tile field offsets (diff)
downloadtorus-a97f4ebf9f2b976e78282928704d6d39768b8362.tar.gz
torus-a97f4ebf9f2b976e78282928704d6d39768b8362.zip
Add tile create and access timestamps
Diffstat (limited to '')
-rw-r--r--torus.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/torus.h b/torus.h
index bb012f2..968c9f6 100644
--- a/torus.h
+++ b/torus.h
@@ -2,6 +2,7 @@
 #include <stdbool.h>
 #include <stddef.h>
 #include <stdint.h>
+#include <time.h>
 
 #define ALIGNED(x) __attribute__((aligned(x)))
 
@@ -25,7 +26,8 @@ enum {
 #define CELL_INIT_Y (CELL_ROWS / 2)
 
 struct Tile {
-    bool present;
+    time_t create;
+    time_t access;
     char cells[CELL_ROWS][CELL_COLS] ALIGNED(16);
     uint8_t colors[CELL_ROWS][CELL_COLS] ALIGNED(16);
 } ALIGNED(4096);