diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-10-05 09:03:12 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-10-05 09:03:12 +0800 |
commit | 3eced116f16e16fdf08c65c189ac7b2c1cd83232 (patch) | |
tree | f1d89dd97ce9a78c9b7034cd1d0d88f66183ef84 /mbbsd/friend.c | |
parent | 2e0a596fcdfbb85c327cc2ede3648f10ef113d2b (diff) | |
download | pttbbs-3eced116f16e16fdf08c65c189ac7b2c1cd83232.tar pttbbs-3eced116f16e16fdf08c65c189ac7b2c1cd83232.tar.gz pttbbs-3eced116f16e16fdf08c65c189ac7b2c1cd83232.tar.bz2 pttbbs-3eced116f16e16fdf08c65c189ac7b2c1cd83232.tar.lz pttbbs-3eced116f16e16fdf08c65c189ac7b2c1cd83232.tar.xz pttbbs-3eced116f16e16fdf08c65c189ac7b2c1cd83232.tar.zst pttbbs-3eced116f16e16fdf08c65c189ac7b2c1cd83232.zip |
use bsearch in login_friend_online()
save cpu but increase SHM_t (sizeof(short) * MAX_ACTIVE) bytes
WARNING: SHM_t has been changed
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1212 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/friend.c')
-rw-r--r-- | mbbsd/friend.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mbbsd/friend.c b/mbbsd/friend.c index 8205686d..ab9f1076 100644 --- a/mbbsd/friend.c +++ b/mbbsd/friend.c @@ -271,7 +271,9 @@ friend_load(int type) myfriends[friendcount++] = unum; fclose(fp); } + qsort(myfriends, friendcount, sizeof(int), qsort_intcompar); memcpy(currutmp->friend, myfriends, sizeof(myfriends)); + currutmp->nFriends = friendcount; } if (!type || type & FRIEND_REJECT) { |