Module Name: src Committed By: pooka Date: Wed Oct 14 17:30:52 UTC 2009
Modified Files: src/sys/rump/librump/rumpkern: rump_private.h Log Message: g/c some stuff which wasn't supposed to see the light of day To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/sys/rump/librump/rumpkern/rump_private.h 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_private.h diff -u src/sys/rump/librump/rumpkern/rump_private.h:1.29 src/sys/rump/librump/rumpkern/rump_private.h:1.30 --- src/sys/rump/librump/rumpkern/rump_private.h:1.29 Wed Oct 14 17:29:19 2009 +++ src/sys/rump/librump/rumpkern/rump_private.h Wed Oct 14 17:30:52 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: rump_private.h,v 1.29 2009/10/14 17:29:19 pooka Exp $ */ +/* $NetBSD: rump_private.h,v 1.30 2009/10/14 17:30:52 pooka Exp $ */ /* * Copyright (c) 2007 Antti Kantee. All Rights Reserved. @@ -46,28 +46,6 @@ #include "rumpkern_if_priv.h" -/* - * Public interface implementation: create a function which calls - * the scheduler and then the private interface. - */ -#define RUMP_PUB_INTERFACE_VOIDARG(type, name, dummy) \ -type rump_ ## name (void); \ -type rump_ ## name (void) \ -{ \ - type rv; \ - rv = rumpint_ ## name(); \ - return rv; \ -} \ -type rumpint_ ## name(void) - -#define RUMP_PUB_INTERFACE_VOIDTYPE(dummy, name, args) \ -void rump_ ## name args; \ -void rump_ ## name args \ -{ \ - rumpint_ ## name args; \ -} \ -type rumpint_ ## name(void) - extern kauth_cred_t rump_cred; extern struct vmspace rump_vmspace;