1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* $Id$ */
#include "bbs.h"
SHM_t *SHM;
int main(int argc, char **argv) {
int i, shm, counter;
shm = shmget(SHM_KEY, SHMSIZE,
#ifdef USE_HUGETLB
SHM_HUGETLB |
#endif
SHM_R | SHM_W);
if(shm == -1) {
perror("shmget");
exit(0);
}
if( (SHM = shmat(shm, NULL, 0)) < 0 ){
perror("shmat");
exit(0);
}
if(argc == 2) {
/* list specific id */
for (i = 0; i < USHM_SIZE; i++)
{
userinfo_t *f = &SHM->uinfo[i];
if(!f->pid)
continue;
if(strcmp(f->userid, argv[1]) != 0)
continue;
printf(
"id=%s money=%d\n",
f->userid, SHM->money[f->uid - 1]);
}
}
else
{
for(i = counter = 0; i < USHM_SIZE; i++)
if(SHM->uinfo[i].pid) {
userinfo_t *f;
f = &SHM->uinfo[i];
printf(
"%4d(%d) p[%d] i[%d] u[%s] n[%s] f[%s] m[%d] t[%d]\n",
++counter, i, f->pager, f->invisible, f->userid,
f->nickname, f->from, f->mode, f->lastact);
}
printf("\nTotal: %d(%d)\n", counter, SHM->number);
}
return 0;
}
|