From 8ca7f09f6e144540a80ac6b6d3342426c84327f6 Mon Sep 17 00:00:00 2001 From: pooka Date: Wed, 14 Oct 2009 17:30:52 +0000 Subject: [PATCH] g/c some stuff which wasn't supposed to see the light of day --- sys/rump/librump/rumpkern/rump_private.h | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/sys/rump/librump/rumpkern/rump_private.h b/sys/rump/librump/rumpkern/rump_private.h index 798f1cbbae56..c4934fcd632e 100644 --- a/sys/rump/librump/rumpkern/rump_private.h +++ b/sys/rump/librump/rumpkern/rump_private.h @@ -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;