Differences From
Artifact [56848bb56b]:
9 9 #include <unistd.h>
10 10 #include <errno.h>
11 11 #include <fcntl.h>
12 12 #include <stdio.h>
13 13 #include <fuse.h>
14 14 #include <tcl.h>
15 15
16 -#define APPFS_CACHEDIR "/tmp/appfs-cache"
16 +#define APPFS_CACHEDIR "/var/cache/appfs"
17 17
18 18 #define APPFS_DEBUG(x...) { fprintf(stderr, "[debug] %s:%i:%s: ", __FILE__, __LINE__, __func__); fprintf(stderr, x); fprintf(stderr, "\n"); }
19 19
20 20 static pthread_key_t interpKey;
21 21
22 22 struct appfs_thread_data {
23 23 sqlite3 *db;