summaryrefslogtreecommitdiffstats
path: root/mbbsd/board.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-08-20 12:58:01 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2002-08-20 12:58:01 +0800
commit8d538c83ebb30dcc092980190033450bf222577c (patch)
tree0142848cf820555ca8e00b38fab8eaa69a9faf1e /mbbsd/board.c
parent70148db3434a3d889218972a490437d2f3363036 (diff)
downloadpttbbs-8d538c83ebb30dcc092980190033450bf222577c.tar
pttbbs-8d538c83ebb30dcc092980190033450bf222577c.tar.gz
pttbbs-8d538c83ebb30dcc092980190033450bf222577c.tar.bz2
pttbbs-8d538c83ebb30dcc092980190033450bf222577c.tar.lz
pttbbs-8d538c83ebb30dcc092980190033450bf222577c.tar.xz
pttbbs-8d538c83ebb30dcc092980190033450bf222577c.tar.zst
pttbbs-8d538c83ebb30dcc092980190033450bf222577c.zip
nbrd uses smaller memory
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@481 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r--mbbsd/board.c33
1 files changed, 27 insertions, 6 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c
index 350a482d..586ef01e 100644
--- a/mbbsd/board.c
+++ b/mbbsd/board.c
@@ -1,4 +1,4 @@
-/* $Id: board.c,v 1.53 2002/08/20 02:42:36 in2 Exp $ */
+/* $Id: board.c,v 1.54 2002/08/20 04:58:01 in2 Exp $ */
#include "bbs.h"
#define BRC_STRLEN 15 /* Length of board name */
#define BRC_MAXSIZE 24576
@@ -220,7 +220,7 @@ typedef struct {
} boardstat_t;
static int *zapbuf = NULL, *favbuf;
-static int nbrdlength;
+static short nuseboards = 0;
static boardstat_t *nbrd = NULL;
#define STR_BBSRC ".bbsrc"
@@ -450,8 +450,24 @@ load_boards(char *key)
}
brdnum = 0;
if (class_bid <= 0) {
- nbrdlength = numboards * sizeof(boardstat_t);
- nbrd = (boardstat_t *) malloc(nbrdlength);
+ if( nuseboards == 0 ){
+ nuseboards = 10; /* ¦h malloc ¤Q­Óª© */
+ for ( i = 0; i < numboards; i++) {
+ if ((bptr = SHM->bsorted[type][i]) == NULL)
+ continue;
+ n = (int)(bptr - bcache);
+ if (!bptr->brdname[0] || bptr->brdattr & BRD_GROUPBOARD ||
+ !((state = Ben_Perm(bptr)) || (currmode & MODE_MENU)) ||
+ (yank_flag == 0 && !(favbuf[n] & BRD_FAV)) ||
+ (yank_flag == 1 && !zapbuf[n]) ||
+ (key[0] && !strcasestr(bptr->title, key)) ||
+ (class_bid == -1 && bptr->nuser < 5))
+ continue;
+ ++nuseboards;
+ }
+ }
+
+ nbrd = (boardstat_t *) malloc(sizeof(boardstat_t) * nuseboards);
for (i = 0; i < numboards; i++) {
if ((bptr = SHM->bsorted[type][i]) == NULL)
continue;
@@ -469,8 +485,7 @@ load_boards(char *key)
qsort(nbrd, brdnum, sizeof(boardstat_t), cmpboardfriends);
}
} else {
- nbrdlength = bptr->childcount * sizeof(boardstat_t);
- nbrd = (boardstat_t *) malloc(nbrdlength);
+ nbrd = (boardstat_t *) malloc(bptr->childcount * sizeof(boardstat_t));
for (bptr = bptr->firstchild[type]; bptr != (boardheader_t *) ~ 0;
bptr = bptr->next[type]) {
n = (int)(bptr - bcache);
@@ -876,6 +891,7 @@ choose_board(int newflag)
brdnum = -1;
break;
case 'y':
+ nuseboards = 0; /* to recount malloc size for nbrd */
if (class_bid == 0)
yank_flag = (yank_flag + 1) % 3;
else
@@ -930,12 +946,14 @@ choose_board(int newflag)
ptr->myattr ^= BRD_FAV;
favbuf[ptr->bid - 1] = ptr->myattr;
head = 9999;
+ nuseboards = 0; /* to recount malloc size for nbrd */
}
break;
case 'z':
if (HAS_PERM(PERM_BASIC)) {
dozap(num);
head = 9999;
+ nuseboards = 0; /* to recount malloc size for nbrd */
}
break;
case 'Z': /* Ptt */
@@ -944,6 +962,7 @@ choose_board(int newflag)
dozap(tmp);
}
head = 9999;
+ nuseboards = 0; /* to recount malloc size for nbrd */
}
break;
case 'v':
@@ -1068,6 +1087,8 @@ choose_board(int newflag)
}
} while (ch != 'q');
free(nbrd);
+ if( yank_flag != 0 )
+ nuseboards = 0;
}
int