docs: update for new data placement options
[fio.git] / smalloc.h
index d5d4557e121a80fc702ede0ad0655c9cb052b1f9..1f7716f45a8d0308f4bcee85225382052d23d08f 100644 (file)
--- a/smalloc.h
+++ b/smalloc.h
@@ -1,10 +1,16 @@
 #ifndef FIO_SMALLOC_H
 #define FIO_SMALLOC_H
 
-extern void *smalloc(unsigned int);
+#include <stddef.h>
+
+extern void *smalloc(size_t);
+extern void *scalloc(size_t, size_t);
 extern void sfree(void *);
 extern char *smalloc_strdup(const char *);
 extern void sinit(void);
 extern void scleanup(void);
+extern void smalloc_debug(size_t);
+
+extern unsigned int smalloc_pool_size;
 
 #endif