Module Name: src Committed By: pgoyette Date: Thu Aug 16 17:47:47 UTC 2012
Modified Files: src/sys/rump/librump/rumpkern: rump.c Log Message: It helps to include the declaration of the routine being called. To generate a diff of this commit: cvs rdiff -u -r1.243 -r1.244 src/sys/rump/librump/rumpkern/rump.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/rump.c diff -u src/sys/rump/librump/rumpkern/rump.c:1.243 src/sys/rump/librump/rumpkern/rump.c:1.244 --- src/sys/rump/librump/rumpkern/rump.c:1.243 Thu Aug 16 17:25:36 2012 +++ src/sys/rump/librump/rumpkern/rump.c Thu Aug 16 17:47:47 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: rump.c,v 1.243 2012/08/16 17:25:36 pgoyette Exp $ */ +/* $NetBSD: rump.c,v 1.244 2012/08/16 17:47:47 pgoyette Exp $ */ /* * Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.243 2012/08/16 17:25:36 pgoyette Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.244 2012/08/16 17:47:47 pgoyette Exp $"); #include <sys/systm.h> #define ELFSIZE ARCH_ELFSIZE @@ -56,6 +56,7 @@ __KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.2 #include <sys/percpu.h> #include <sys/pipe.h> #include <sys/pool.h> +#include <sys/pserialize.h> #include <sys/queue.h> #include <sys/reboot.h> #include <sys/resourcevar.h>