client: dec sum_stat_clients if one a client is disconnected
[fio.git] / smalloc.h
1 #ifndef FIO_SMALLOC_H
2 #define FIO_SMALLOC_H
3
4 extern void *smalloc(unsigned int);
5 extern void sfree(void *);
6 extern char *smalloc_strdup(const char *);
7 extern void sinit(void);
8 extern void scleanup(void);
9
10 extern unsigned int smalloc_pool_size;
11
12 #endif