summaryrefslogtreecommitdiffstats
path: root/mbbsd/cache.c
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-25 03:48:14 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2003-01-25 03:48:14 +0800
commit17b87448230103f13081c7c3bfa6c9ec7ff8100b (patch)
treefee90d4a5ecb47b3a6a789b54dc8228d70672701 /mbbsd/cache.c
parent22fd324e2bd55d539e9b8ec1efd80e9a7d95ba05 (diff)
downloadpttbbs-17b87448230103f13081c7c3bfa6c9ec7ff8100b.tar
pttbbs-17b87448230103f13081c7c3bfa6c9ec7ff8100b.tar.gz
pttbbs-17b87448230103f13081c7c3bfa6c9ec7ff8100b.tar.bz2
pttbbs-17b87448230103f13081c7c3bfa6c9ec7ff8100b.tar.lz
pttbbs-17b87448230103f13081c7c3bfa6c9ec7ff8100b.tar.xz
pttbbs-17b87448230103f13081c7c3bfa6c9ec7ff8100b.tar.zst
pttbbs-17b87448230103f13081c7c3bfa6c9ec7ff8100b.zip
remove sort_utmp() (in shmctl utmpsortd now)
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@646 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/cache.c')
-rw-r--r--mbbsd/cache.c115
1 files changed, 1 insertions, 114 deletions
diff --git a/mbbsd/cache.c b/mbbsd/cache.c
index 5bcecb08..ae5caad3 100644
--- a/mbbsd/cache.c
+++ b/mbbsd/cache.c
@@ -1,4 +1,4 @@
-/* $Id: cache.c,v 1.56 2003/01/23 18:21:06 in2 Exp $ */
+/* $Id: cache.c,v 1.57 2003/01/24 19:48:14 in2 Exp $ */
#include "bbs.h"
#ifndef __FreeBSD__
@@ -338,118 +338,6 @@ setutmpmode(unsigned int mode)
}
}
#endif
-static int
-cmputmpuserid(const void *i, const void *j)
-{
- return strcasecmp((*((userinfo_t **) i))->userid, (*((userinfo_t **) j))->userid);
-}
-
-static int
-cmputmpmode(const void *i, const void *j)
-{
- return (*((userinfo_t **) i))->mode - (*((userinfo_t **) j))->mode;
-}
-
-static int
-cmputmpidle(const void *i, const void *j)
-{
- return (*((userinfo_t **) i))->lastact - (*((userinfo_t **) j))->lastact;
-}
-
-static int
-cmputmpfrom(const void *i, const void *j)
-{
- return strcasecmp((*((userinfo_t **) i))->from, (*((userinfo_t **) j))->from);
-}
-
-static int
-cmputmpfive(const void *i, const void *j)
-{
- int type;
- if ((type = (*((userinfo_t **) j))->five_win - (*((userinfo_t **) i))->five_win))
- return type;
- if ((type = (*((userinfo_t **) i))->five_lose - (*((userinfo_t **) j))->five_lose))
- return type;
- return (*((userinfo_t **) i))->five_tie - (*((userinfo_t **) j))->five_tie;
-}
-
-static int
-cmputmpchc(const void *i, const void *j)
-{
- int type;
- if ((type = (*((userinfo_t **) j))->chc_win - (*((userinfo_t **) i))->chc_win))
- return type;
- if ((type = (*((userinfo_t **) i))->chc_lose - (*((userinfo_t **) j))->chc_lose))
- return type;
- return (*((userinfo_t **) i))->chc_tie - (*((userinfo_t **) j))->chc_tie;
-}
-
-static int
-cmputmppid(const void *i, const void *j)
-{
- return (*((userinfo_t **) i))->pid - (*((userinfo_t **) j))->pid;
-}
-static int
-cmputmpuid(const void *i, const void *j)
-{
- return (*((userinfo_t **) i))->uid - (*((userinfo_t **) j))->uid;
-}
-void
-sort_utmp()
-{
- userinfo_t *uentp;
- int count, i, ns;
- short nusers[MAX_BOARD];
- now = time(0);
- if (now - SHM->UTMPuptime < 60 &&
- (now == SHM->UTMPuptime || SHM->UTMPbusystate))
- return; /* lazy sort */
- SHM->UTMPbusystate = 1;
- SHM->UTMPuptime = now;
- ns = (SHM->currsorted ? 0 : 1);
-
- for (uentp = &SHM->uinfo[0], count = i = 0;
- i < USHM_SIZE;
- ++i, uentp = &SHM->uinfo[i]) {
- if (uentp->pid) {
- if (uentp->sex < 0 || uentp->sex > 7)
- purge_utmp(uentp);
- else
- SHM->sorted[ns][0][count++] = uentp;
- }
- }
- SHM->UTMPnumber = count;
- qsort(SHM->sorted[ns][0], count, sizeof(userinfo_t *), cmputmpuserid);
- for (i = 0; i < count; ++i)
- ((userinfo_t *) SHM->sorted[ns][0][i])->idoffset = i;
- memcpy(SHM->sorted[ns][1], SHM->sorted[ns][0], sizeof(userinfo_t *) * count);
- memcpy(SHM->sorted[ns][2], SHM->sorted[ns][0], sizeof(userinfo_t *) * count);
- memcpy(SHM->sorted[ns][3], SHM->sorted[ns][0], sizeof(userinfo_t *) * count);
- memcpy(SHM->sorted[ns][4], SHM->sorted[ns][0], sizeof(userinfo_t *) * count);
- memcpy(SHM->sorted[ns][5], SHM->sorted[ns][0], sizeof(userinfo_t *) * count);
- memcpy(SHM->sorted[ns][6], SHM->sorted[ns][0], sizeof(userinfo_t *) * count);
- memcpy(SHM->sorted[ns][7], SHM->sorted[ns][0], sizeof(userinfo_t *) * count);
- qsort(SHM->sorted[ns][1], count, sizeof(userinfo_t *), cmputmpmode);
- qsort(SHM->sorted[ns][2], count, sizeof(userinfo_t *), cmputmpidle);
- qsort(SHM->sorted[ns][3], count, sizeof(userinfo_t *), cmputmpfrom);
- qsort(SHM->sorted[ns][4], count, sizeof(userinfo_t *), cmputmpfive);
- qsort(SHM->sorted[ns][5], count, sizeof(userinfo_t *), cmputmpchc);
- qsort(SHM->sorted[ns][6], count, sizeof(userinfo_t *), cmputmpuid);
- qsort(SHM->sorted[ns][7], count, sizeof(userinfo_t *), cmputmppid);
- SHM->currsorted = ns;
- SHM->UTMPbusystate = 0;
-
- memset(nusers, 0, sizeof(nusers));
- for (i = 0; i < count; ++i) {
- uentp = SHM->sorted[ns][0][i];
- if (uentp && uentp->pid &&
- 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];
-}
/* Ptt:這裡加上 hash 觀念找空的 utmp */
void
@@ -464,7 +352,6 @@ getnewutmpent(userinfo_t * up)
if (!(uentp->pid)) {
memcpy(uentp, up, sizeof(userinfo_t));
currutmp = uentp;
- sort_utmp();
return;
}
}