X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=smalloc.h;h=4b551e3e4be3fd979462371a4c866c349e2bb04e;hp=d5d4557e121a80fc702ede0ad0655c9cb052b1f9;hb=e0b3258bde6f39ab3a9d178b56526b65e0e32a8d;hpb=d24c33a479fcd68debad128da057814495f65e20 diff --git a/smalloc.h b/smalloc.h index d5d4557e..4b551e3e 100644 --- a/smalloc.h +++ b/smalloc.h @@ -1,10 +1,13 @@ #ifndef FIO_SMALLOC_H #define FIO_SMALLOC_H -extern void *smalloc(unsigned int); +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 unsigned int smalloc_pool_size; + #endif