summaryrefslogtreecommitdiffstats
path: root/mbbsd/board.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-08-07 17:32:38 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-08-07 17:32:38 +0800
commitc663980c420bd8f1c95e5682325a908752030378 (patch)
tree7d487ea535b6b2076e46b3efc6ea681d8e929b2d /mbbsd/board.c
parentd87136744dc022b12a61539f6dd724eb19707d18 (diff)
downloadpttbbs-c663980c420bd8f1c95e5682325a908752030378.tar
pttbbs-c663980c420bd8f1c95e5682325a908752030378.tar.gz
pttbbs-c663980c420bd8f1c95e5682325a908752030378.tar.bz2
pttbbs-c663980c420bd8f1c95e5682325a908752030378.tar.lz
pttbbs-c663980c420bd8f1c95e5682325a908752030378.tar.xz
pttbbs-c663980c420bd8f1c95e5682325a908752030378.tar.zst
pttbbs-c663980c420bd8f1c95e5682325a908752030378.zip
favbuf, zapbuf swapout
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@462 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r--mbbsd/board.c33
1 files changed, 32 insertions, 1 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index 7001f730..b8ef6c08 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -1,4 +1,4 @@
-/* $Id: board.c,v 1.48 2002/08/06 09:03:02 in2 Exp $ */
+/* $Id: board.c,v 1.49 2002/08/07 09:32:38 in2 Exp $ */
#include "bbs.h"
#define BRC_STRLEN 15 /* Length of board name */
#define BRC_MAXSIZE 24576
@@ -226,6 +226,10 @@ static boardstat_t *nbrd = NULL;
#define STR_BBSRC ".bbsrc"
#define STR_FAV ".fav"
+#ifdef OUTTA_CACHE
+int zaplength, favlength;
+#endif
+
void
init_brdbuf()
{
@@ -259,6 +263,11 @@ init_brdbuf()
favbuf[n] &= ~BRD_TAG;
brc_expire_time = login_start_time - 365 * 86400;
+
+#ifdef OUTTA_CACHE
+ outta_swapout((void **)&favbuf, (favlength = size + 4), 'f');
+ outta_swapout((void **)&zapbuf, (zaplength = size), 'z');
+#endif
}
void
@@ -267,6 +276,10 @@ save_brdbuf()
int fd, size;
char fname[60];
+#ifdef OUTTA_CACHE
+ outta_swapin((void **)&favbuf, favlength, 'f');
+ outta_swapin((void **)&zapbuf, zaplength, 'z');
+#endif
if (!zapbuf)
return;
setuserfile(fname, STR_BBSRC);
@@ -709,6 +722,14 @@ choose_board(int newflag)
char genbuf[200];
#endif
+#ifdef OUTTA_CACHE
+ static char depth = 0;
+ ++depth;
+ if( favbuf == NULL )
+ outta_swapin((void **)&favbuf, favlength, 'f');
+ if( zapbuf == NULL )
+ outta_swapin((void **)&zapbuf, zaplength, 'z');
+#endif
setutmpmode(newflag ? READNEW : READBRD);
brdnum = 0;
if (!cuser.userlevel) /* guest yank all boards */
@@ -1018,10 +1039,14 @@ choose_board(int newflag)
if (!(ptr->myattr & BRD_ZAP))
zapbuf[ptr->bid - 1] = now;
#ifdef OUTTA_CACHE
+ outta_swapout((void **)&favbuf, favlength, 'f');
+ outta_swapout((void **)&zapbuf, zaplength, 'z');
outta_swapout((void **)&nbrd, nbrdlength, 'b');
#endif
Read();
#ifdef OUTTA_CACHE
+ outta_swapin((void **)&favbuf, favlength, 'f');
+ outta_swapin((void **)&zapbuf, zaplength, 'z');
outta_swapin((void **)&nbrd, nbrdlength, 'b');
ptr = &nbrd[num];
#endif
@@ -1071,6 +1096,12 @@ choose_board(int newflag)
}
} while (ch != 'q');
free(nbrd);
+#ifdef OUTTA_CACHE
+ if( --depth == 0 ){
+ outta_swapout((void **)&favbuf, favlength, 'f');
+ outta_swapout((void **)&zapbuf, zaplength, 'z');
+ }
+#endif
}
int