Module Name:    src
Committed By:   pooka
Date:           Wed Jun  3 16:07:21 UTC 2009

Modified Files:
        src/sys/rump/librump/rumpkern: pool.c

Log Message:
pool_prime emulation


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/rump/librump/rumpkern/pool.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpkern/pool.c
diff -u src/sys/rump/librump/rumpkern/pool.c:1.13 src/sys/rump/librump/rumpkern/pool.c:1.14
--- src/sys/rump/librump/rumpkern/pool.c:1.13	Fri Apr 24 13:27:03 2009
+++ src/sys/rump/librump/rumpkern/pool.c	Wed Jun  3 16:07:21 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: pool.c,v 1.13 2009/04/24 13:27:03 pooka Exp $	*/
+/*	$NetBSD: pool.c,v 1.14 2009/06/03 16:07:21 pooka Exp $	*/
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pool.c,v 1.13 2009/04/24 13:27:03 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pool.c,v 1.14 2009/06/03 16:07:21 pooka Exp $");
 
 #ifndef RUMP_USE_REAL_ALLOCATORS
 
@@ -216,4 +216,11 @@
 
 	return pool_put(pp, item);
 }
+
+int
+pool_prime(struct pool *pp, int nitems)
+{
+
+	return 0;
+}
 #endif /* RUMP_USE_REAL_ALLOCATORS */

Reply via email to