Module Name: src
Committed By: christos
Date: Sat Sep 24 21:18:09 UTC 2016
Modified Files:
src/include: mpool.h
Log Message:
remove mpool_getf
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/include/mpool.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/include/mpool.h
diff -u src/include/mpool.h:1.15 src/include/mpool.h:1.16
--- src/include/mpool.h:1.15 Sat Sep 24 16:11:43 2016
+++ src/include/mpool.h Sat Sep 24 17:18:09 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: mpool.h,v 1.15 2016/09/24 20:11:43 christos Exp $ */
+/* $NetBSD: mpool.h,v 1.16 2016/09/24 21:18:09 christos Exp $ */
/*-
* Copyright (c) 1991, 1993, 1994
@@ -102,8 +102,7 @@ void mpool_filter(MPOOL *, void (*)(voi
void *mpool_new(MPOOL *, pgno_t *);
void *mpool_newf(MPOOL *, pgno_t *, unsigned int);
int mpool_delete(MPOOL *, void *);
-void *mpool_get(MPOOL *, pgno_t);
-void *mpool_getf(MPOOL *, pgno_t, unsigned int);
+void *mpool_get(MPOOL *, pgno_t, unsigned int);
int mpool_put(MPOOL *, void *, unsigned int);
int mpool_sync(MPOOL *);
int mpool_close(MPOOL *);