blob: f9a5e410fae79b570973a708c95f713912d8e40c [file] [log] [blame]
Jens Axboed24c33a2008-03-01 18:27:36 +01001#ifndef FIO_SMALLOC_H
2#define FIO_SMALLOC_H
3
Jens Axboe7982aa72012-11-02 16:35:18 +01004extern void *smalloc(size_t);
Jens Axboed24c33a2008-03-01 18:27:36 +01005extern void sfree(void *);
6extern char *smalloc_strdup(const char *);
7extern void sinit(void);
8extern void scleanup(void);
9
Jens Axboe2b386d22008-03-26 10:32:57 +010010extern unsigned int smalloc_pool_size;
11
Jens Axboed24c33a2008-03-01 18:27:36 +010012#endif