use <rump/rumpuser_port.h>
This commit is contained in:
parent
6cd40f3fba
commit
0f188198a5
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.8 2013/05/15 20:27:00 pooka Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2013/09/10 16:53:06 pooka Exp $
|
||||
#
|
||||
|
||||
.PATH: ${.CURDIR}/../../sys/rump/librump/rumpkern
|
||||
@ -18,7 +18,7 @@ LIBDPLIBS+= ${lib} lib
|
||||
.endfor
|
||||
|
||||
CPPFLAGS+= -DRUMP_CLIENT
|
||||
CPPFLAGS+= -I${.OBJDIR} -I${.CURDIR} -I${.CURDIR}/../librumpuser
|
||||
CPPFLAGS+= -I${.OBJDIR} -I${.CURDIR}
|
||||
SRCS= rumpclient.c
|
||||
SRCS+= rump_syscalls.c
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: rumpclient.c,v 1.54 2013/01/17 20:47:44 pooka Exp $ */
|
||||
/* $NetBSD: rumpclient.c,v 1.55 2013/09/10 16:53:06 pooka Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2010, 2011 Antti Kantee. All Rights Reserved.
|
||||
@ -29,7 +29,7 @@
|
||||
* Client side routines for rump syscall proxy.
|
||||
*/
|
||||
|
||||
#include "rumpuser_port.h"
|
||||
#include <rump/rumpuser_port.h>
|
||||
|
||||
/*
|
||||
* We use kqueue on NetBSD, poll elsewhere. Theoretically we could
|
||||
@ -48,7 +48,7 @@
|
||||
#define USE_KQUEUE
|
||||
#endif
|
||||
|
||||
__RCSID("$NetBSD: rumpclient.c,v 1.54 2013/01/17 20:47:44 pooka Exp $");
|
||||
__RCSID("$NetBSD: rumpclient.c,v 1.55 2013/09/10 16:53:06 pooka Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/mman.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.12 2013/07/29 10:13:21 pooka Exp $
|
||||
# $NetBSD: Makefile,v 1.13 2013/09/10 16:53:06 pooka Exp $
|
||||
#
|
||||
|
||||
LIB= rumphijack
|
||||
@ -10,7 +10,7 @@ MAN= rumphijack.3
|
||||
|
||||
SRCS= hijack.c hijackdlsym.c
|
||||
|
||||
CPPFLAGS+= -D_DIAGNOSTIC -D_REENTRANT -I${.CURDIR}/../librumpuser
|
||||
CPPFLAGS+= -D_DIAGNOSTIC -D_REENTRANT
|
||||
|
||||
WARNS?= 5
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: hijack.c,v 1.105 2013/07/31 12:23:25 pooka Exp $ */
|
||||
/* $NetBSD: hijack.c,v 1.106 2013/09/10 16:53:06 pooka Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2011 Antti Kantee. All Rights Reserved.
|
||||
@ -25,10 +25,10 @@
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "rumpuser_port.h"
|
||||
#include <rump/rumpuser_port.h>
|
||||
|
||||
#if !defined(lint)
|
||||
__RCSID("$NetBSD: hijack.c,v 1.105 2013/07/31 12:23:25 pooka Exp $");
|
||||
__RCSID("$NetBSD: hijack.c,v 1.106 2013/09/10 16:53:06 pooka Exp $");
|
||||
#endif
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: hijackdlsym.c,v 1.4 2013/07/18 22:58:35 pooka Exp $ */
|
||||
/* $NetBSD: hijackdlsym.c,v 1.5 2013/09/10 16:53:06 pooka Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2011 Antti Kantee. All Rights Reserved.
|
||||
@ -25,10 +25,10 @@
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "rumpuser_port.h"
|
||||
#include <rump/rumpuser_port.h>
|
||||
|
||||
#if !defined(lint)
|
||||
__RCSID("$NetBSD: hijackdlsym.c,v 1.4 2013/07/18 22:58:35 pooka Exp $");
|
||||
__RCSID("$NetBSD: hijackdlsym.c,v 1.5 2013/09/10 16:53:06 pooka Exp $");
|
||||
#endif
|
||||
|
||||
#include <dlfcn.h>
|
||||
|
Loading…
Reference in New Issue
Block a user