Module Name: src Committed By: stacktic Date: Wed Dec 23 17:16:40 UTC 2009
Modified Files: src/sys/rump/librump/rumpkern: memalloc.c Log Message: Fixed build when using unreal allocators. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/rump/librump/rumpkern/memalloc.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/memalloc.c diff -u src/sys/rump/librump/rumpkern/memalloc.c:1.2 src/sys/rump/librump/rumpkern/memalloc.c:1.3 --- src/sys/rump/librump/rumpkern/memalloc.c:1.2 Fri Nov 27 13:45:15 2009 +++ src/sys/rump/librump/rumpkern/memalloc.c Wed Dec 23 17:16:40 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: memalloc.c,v 1.2 2009/11/27 13:45:15 pooka Exp $ */ +/* $NetBSD: memalloc.c,v 1.3 2009/12/23 17:16:40 stacktic Exp $ */ /* * Copyright (c) 2009 Antti Kantee. All Rights Reserved. @@ -226,6 +226,13 @@ return true; } +void +pool_cache_cpu_init(struct cpu_info *ci) +{ + + return; +} + void * pool_get(struct pool *pp, int flags) {