Expose rump_schedule() and rump_unschedule(). These can be used

for wrapping application space calls to the rump kernel without
having to do heavyweight interface specification with ifspec.
This commit is contained in:
pooka 2010-02-24 14:56:04 +00:00
parent 626b19f88a
commit 1142233da6
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rump.h,v 1.36 2010/02/11 01:13:58 pooka Exp $ */
/* $NetBSD: rump.h,v 1.37 2010/02/24 14:56:04 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@ -90,6 +90,9 @@ _BEGIN_DECLS
int rump_boot_gethowto(void);
void rump_boot_sethowto(int);
void rump_schedule(void);
void rump_unschedule(void);
int rump__init(int);
#ifndef _RUMPKERNEL