Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/librump/rumpkern g/c the never-used and never-usefu...



details:   https://anonhg.NetBSD.org/src/rev/5c285af3d9d8
branches:  trunk
changeset: 807816:5c285af3d9d8
user:      pooka <pooka%NetBSD.org@localhost>
date:      Thu Apr 23 06:39:19 2015 +0000

description:
g/c the never-used and never-useful hyperstubs.c

diffstat:

 sys/rump/librump/rumpkern/Makefile.rumpkern |   5 +-
 sys/rump/librump/rumpkern/hyperstubs.c      |  66 -----------------------------
 2 files changed, 1 insertions(+), 70 deletions(-)

diffs (89 lines):

diff -r fd45da9d5713 -r 5c285af3d9d8 sys/rump/librump/rumpkern/Makefile.rumpkern
--- a/sys/rump/librump/rumpkern/Makefile.rumpkern       Thu Apr 23 06:19:10 2015 +0000
+++ b/sys/rump/librump/rumpkern/Makefile.rumpkern       Thu Apr 23 06:39:19 2015 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.rumpkern,v 1.157 2015/04/22 17:57:49 pooka Exp $
+#      $NetBSD: Makefile.rumpkern,v 1.158 2015/04/23 06:39:19 pooka Exp $
 #
 
 .include "${RUMPTOP}/Makefile.rump"
@@ -39,9 +39,6 @@
 CPPFLAGS+= -DRUMP_KERNEL_IS_LIBC
 .endif
 
-# optional hypervisor interfaces
-#SRCS+=        hyperstubs.c
-
 # Multiprocessor or uniprocessor locking.  TODO: select right
 # locking at runtime.
 .if ${RUMP_LOCKS_UP:Uno} == "yes"
diff -r fd45da9d5713 -r 5c285af3d9d8 sys/rump/librump/rumpkern/hyperstubs.c
--- a/sys/rump/librump/rumpkern/hyperstubs.c    Thu Apr 23 06:19:10 2015 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,66 +0,0 @@
-/*     $NetBSD: hyperstubs.c,v 1.2 2013/04/30 14:28:52 pooka Exp $     */
-
-/*
- * Copyright (c) 2013 Antti Kantee.  All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
- * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- */
-
-#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hyperstubs.c,v 1.2 2013/04/30 14:28:52 pooka Exp $");
-
-#include <sys/errno.h>
-
-/* provide weak aliases for optional rump kernel hypervisor features */
-
-int rump_hypernotsupp(void);
-int rump_hypernotsupp(void) { return ENOTSUP; }
-
-/* dynlinking */
-
-__weak_alias(rumpuser_dl_bootstrap,rump_hypernotsupp);
-__weak_alias(rumpuser_dl_globalsym,rump_hypernotsupp);
-
-/* race-free daemon creation */
-
-__weak_alias(rumpuser_daemonize_begin,rump_hypernotsupp);
-__weak_alias(rumpuser_daemonize_done,rump_hypernotsupp);
-
-/* process env */
-
-__weak_alias(rumpuser_kill,rump_hypernotsupp);
-
-/* anonmmap (for proplib and modules) */
-
-__weak_alias(rumpuser_anonmmap,rump_hypernotsupp);
-__weak_alias(rumpuser_unmap,rump_hypernotsupp);
-
-/* syscall proxy */
-
-__weak_alias(rumpuser_sp_init,rump_hypernotsupp);
-__weak_alias(rumpuser_sp_copyin,rump_hypernotsupp);
-__weak_alias(rumpuser_sp_copyinstr,rump_hypernotsupp);
-__weak_alias(rumpuser_sp_copyout,rump_hypernotsupp);
-__weak_alias(rumpuser_sp_copyoutstr,rump_hypernotsupp);
-__weak_alias(rumpuser_sp_anonmmap,rump_hypernotsupp);
-__weak_alias(rumpuser_sp_raise,rump_hypernotsupp);
-__weak_alias(rumpuser_sp_fini,rump_hypernotsupp);



Home | Main Index | Thread Index | Old Index