5 static void display(const char *name
, size_t size
) {
6 printf("%s\t%d\n", name
, (int)size
);
9 int main(int argc
, char **argv
) {
11 display("Slab Stats", sizeof(struct slab_stats
));
12 display("Thread stats",
13 sizeof(struct thread_stats
)
14 - (200 * sizeof(struct slab_stats
)));
15 display("Global stats", sizeof(struct stats
));
16 display("Settings", sizeof(struct settings
));
17 display("Item (no cas)", sizeof(item
));
18 display("Item (cas)", sizeof(item
) + sizeof(uint64_t));
19 display("Libevent thread",
20 sizeof(LIBEVENT_THREAD
) - sizeof(struct thread_stats
));
21 display("Connection", sizeof(conn
));
23 printf("----------------------------------------\n");
25 display("libevent thread cumulative", sizeof(LIBEVENT_THREAD
));
26 display("Thread stats cumulative\t", sizeof(struct thread_stats
));