Home | History | Annotate | Download | only in fio
      1 #ifndef FIO_SMALLOC_H
      2 #define FIO_SMALLOC_H
      3 
      4 extern void *smalloc(size_t);
      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
     13