summaryrefslogtreecommitdiffstats
path: root/mbbsd/cache.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-12-05 11:33:26 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-12-05 11:33:26 +0800
commit42623d301183c080a095791fd5ada478f812d272 (patch)
treed81e5c52ab700fafc6c2b4cf27ba40694be64652 /mbbsd/cache.c
parent10d9931212b7fa65cb062bbd9ec8714877b651ce (diff)
downloadpttbbs-42623d301183c080a095791fd5ada478f812d272.tar
pttbbs-42623d301183c080a095791fd5ada478f812d272.tar.gz
pttbbs-42623d301183c080a095791fd5ada478f812d272.tar.bz2
pttbbs-42623d301183c080a095791fd5ada478f812d272.tar.lz
pttbbs-42623d301183c080a095791fd5ada478f812d272.tar.xz
pttbbs-42623d301183c080a095791fd5ada478f812d272.tar.zst
pttbbs-42623d301183c080a095791fd5ada478f812d272.zip
user could remove dircache if need (not tested)
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1396 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/cache.c')
-rw-r--r--mbbsd/cache.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mbbsd/cache.c b/mbbsd/cache.c
index 7059d4e2..cacdb1d7 100644
--- a/mbbsd/cache.c
+++ b/mbbsd/cache.c
@@ -509,10 +509,13 @@ void touchbtotal(int bid) {
void
touchdircache(int bid)
{
+#if DIRCACHESIZE
int *i = (int *)&SHM->dircache[bid - 1][0].filename[0];
*i = 0;
+#endif
}
+#if DIRCACHESIZE
void
load_fileheader_cache(int bid, char *direct)
{
@@ -553,6 +556,7 @@ get_fileheader_cache(int bid, char *direct, fileheader_t * headers,
memcpy(headers, &(SHM->dircache[bid - 1][n]), sizeof(fileheader_t) * ret);
return ret;
}
+#endif
static int
cmpboardname(boardheader_t ** brd, boardheader_t ** tmp)