pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/pool.h


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/pool.h
Date: Sat, 29 Oct 2005 01:50:09 -0400

Index: pspp/src/pool.h
diff -u pspp/src/pool.h:1.5 pspp/src/pool.h:1.6
--- pspp/src/pool.h:1.5 Fri Apr 29 01:02:15 2005
+++ pspp/src/pool.h     Sat Oct 29 05:50:06 2005
@@ -40,6 +40,7 @@
 
 /* Suballocation routines. */
 void *pool_alloc (struct pool *, size_t) MALLOC_LIKE;
+void *pool_nalloc (struct pool *, size_t n, size_t s) MALLOC_LIKE;
 void *pool_clone (struct pool *, const void *, size_t) MALLOC_LIKE;
 char *pool_strdup (struct pool *, const char *) MALLOC_LIKE;
 char *pool_strndup (struct pool *, const char *, size_t) MALLOC_LIKE;
@@ -47,7 +48,9 @@
 
 /* Standard allocation routines. */
 void *pool_malloc (struct pool *, size_t) MALLOC_LIKE;
+void *pool_nmalloc (struct pool *, size_t n, size_t s) MALLOC_LIKE;
 void *pool_realloc (struct pool *, void *, size_t);
+void *pool_nrealloc (struct pool *, void *, size_t n, size_t s);
 void pool_free (struct pool *, void *);
 
 /* Gizmo allocations. */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]