last cleanup of pool code before rewriting it

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2106 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
beveloper
2002-11-28 15:05:58 +00:00
parent 9c2992c73b
commit 428f0ce25c
3 changed files with 7 additions and 15 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
/* pools.h
/* pools.h
* simple fixed size block allocator
*/
@@ -47,7 +47,7 @@ struct pool_ctl {
};
int32 pool_init(pool_ctl **p, size_t sz);
char *pool_get(pool_ctl *p);
void *pool_get(pool_ctl *p);
void pool_put(pool_ctl *p, void *ptr);
void pool_destroy(pool_ctl *p);
void pool_debug(struct pool_ctl *p, char *name);