diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-08-06 17:03:02 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-08-06 17:03:02 +0800 |
commit | 82fd073915e8fd8a38ce5a7c7bf0836e0e1b2c80 (patch) | |
tree | c1cc14425fb3f3782b1a59ade16b917dde763186 | |
parent | a2ab3f51c0451a715fc57be7379a87ce547869ff (diff) | |
download | pttbbs-82fd073915e8fd8a38ce5a7c7bf0836e0e1b2c80.tar pttbbs-82fd073915e8fd8a38ce5a7c7bf0836e0e1b2c80.tar.gz pttbbs-82fd073915e8fd8a38ce5a7c7bf0836e0e1b2c80.tar.bz2 pttbbs-82fd073915e8fd8a38ce5a7c7bf0836e0e1b2c80.tar.lz pttbbs-82fd073915e8fd8a38ce5a7c7bf0836e0e1b2c80.tar.xz pttbbs-82fd073915e8fd8a38ce5a7c7bf0836e0e1b2c80.tar.zst pttbbs-82fd073915e8fd8a38ce5a7c7bf0836e0e1b2c80.zip |
outta_swap
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@456 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | include/proto.h | 7 | ||||
-rw-r--r-- | mbbsd/board.c | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/include/proto.h b/include/proto.h index 5e3d8f91..47f45517 100644 --- a/include/proto.h +++ b/include/proto.h @@ -1,4 +1,4 @@ -/* $Id: proto.h,v 1.24 2002/07/04 19:46:14 in2 Exp $ */ +/* $Id: proto.h,v 1.25 2002/08/06 09:02:59 in2 Exp $ */ #ifndef INCLUDE_PROTO_H #define INCLUDE_PROTO_H @@ -117,6 +117,11 @@ int get_fileheader_cache(int bid, char *direct, fileheader_t *headers, int recbase, int nlines); void *attach_shm(int shmkey, int shmsize); void attach_SHM(void); +#ifdef OUTTA_CACHE +void outta_swapout(void **ptr, int length, char cacheid); +void outta_swapin(void **ptr, int length, char cacheid); +#endif + /* cal */ int give_tax(int money); diff --git a/mbbsd/board.c b/mbbsd/board.c index 9f20b645..7001f730 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -1,4 +1,4 @@ -/* $Id: board.c,v 1.47 2002/08/06 08:58:25 in2 Exp $ */ +/* $Id: board.c,v 1.48 2002/08/06 09:03:02 in2 Exp $ */ #include "bbs.h" #define BRC_STRLEN 15 /* Length of board name */ #define BRC_MAXSIZE 24576 @@ -1018,11 +1018,11 @@ choose_board(int newflag) if (!(ptr->myattr & BRD_ZAP)) zapbuf[ptr->bid - 1] = now; #ifdef OUTTA_CACHE - outta_swapout(&nbrd, nbrdlength, 'b'); + outta_swapout((void **)&nbrd, nbrdlength, 'b'); #endif Read(); #ifdef OUTTA_CACHE - outta_swapin(&nbrd, nbrdlength, 'b'); + outta_swapin((void **)&nbrd, nbrdlength, 'b'); ptr = &nbrd[num]; #endif check_newpost(ptr); |