From b9d50d84ccc8c070c7e38f2a9dcd1f3bb5641df5 Mon Sep 17 00:00:00 2001 From: in2 Date: Wed, 10 Mar 2004 13:18:07 +0000 Subject: HOTBOARDCACHE git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1584 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- util/shmctl.c | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) (limited to 'util') diff --git a/util/shmctl.c b/util/shmctl.c index 001fd4eb..8b30c758 100644 --- a/util/shmctl.c +++ b/util/shmctl.c @@ -210,6 +210,8 @@ inline void utmpsort(int sortall) userinfo_t *uentp; int count, i, ns; short nusers[MAX_BOARD]; + boardheader_t *HBcache[HOTBOARDCACHE]; + SHM->UTMPbusystate = 1; #ifdef OUTTA_TIMER @@ -260,9 +262,35 @@ inline void utmpsort(int sortall) 0 < uentp->brc_id && uentp->brc_id < MAX_BOARD) ++nusers[uentp->brc_id - 1]; } - for (i = 0; i < SHM->Bnumber; ++i) - if (SHM->bcache[i].brdname[0] != 0) - SHM->bcache[i].nuser = nusers[i]; + { +#if HOTBOARDCACHE + int k, r, last = 0, top = 0; +#endif + for (i = 0; i < SHM->Bnumber; ++i) + if (SHM->bcache[i].brdname[0] != 0){ + SHM->bcache[i].nuser = nusers[i]; +#if HOTBOARDCACHE + if( nusers[i] > 8 && + (top < HOTBOARDCACHE || nusers[i] > last) && + IS_BOARD(&SHM->bcache[i]) && + IS_OPENBRD(&SHM->bcache[i]) ){ + for( k = top - 1 ; k >= 0 ; --k ) + if( nusers[i] < HBcache[k]->nuser ) + break; + if( top < HOTBOARDCACHE ) + ++top; + for( r = top - 1 ; r > (k + 1) ; --r ) + HBcache[r] = HBcache[r - 1]; + HBcache[k + 1] = &SHM->bcache[i]; + last = nusers[(HBcache[top - 1] - SHM->bcache)]; + } +#endif + } +#if HOTBOARDCACHE + memcpy(SHM->HBcache, HBcache, sizeof(HBcache)); + SHM->nHOTs = top; +#endif + } } SHM->currsorted = ns; -- cgit v1.2.3