X-Git-Url: http://git.onelab.eu/?p=util-vserver.git;a=blobdiff_plain;f=lib%2Fsyscall_ctxcreate.c;h=77fad68d61dbe9e72cce49ec392d1d9c3db78dc3;hp=850e1cbdb68576abb495c44029a4540e651ec858;hb=a741f6faf2baae1e823d334012f6a09e6a1bda51;hpb=426a0d3a38995dc25a839aaa56d8642e6bdcbba5 diff --git a/lib/syscall_ctxcreate.c b/lib/syscall_ctxcreate.c index 850e1cb..77fad68 100644 --- a/lib/syscall_ctxcreate.c +++ b/lib/syscall_ctxcreate.c @@ -1,4 +1,4 @@ -// $Id: syscall_ctxcreate.c 2207 2005-10-29 10:31:42Z ensc $ --*- c -*-- +// $Id: syscall_ctxcreate.c 2578 2007-08-08 20:05:26Z dhozac $ --*- c -*-- // Copyright (C) 2004 Enrico Scholz // @@ -21,17 +21,26 @@ #endif #include "vserver.h" -#include "vserver-internal.h" #include "virtual.h" +#if defined(VC_ENABLE_API_V13) && defined(VC_ENABLE_API_V21) +# define VC_MULTIVERSION_SYSCALL 1 +#endif +#include "vserver-internal.h" + #if defined(VC_ENABLE_API_V13) # include "syscall_ctxcreate-v13.hc" #endif -#if defined(VC_ENABLE_API_V13) +#if defined(VC_ENABLE_API_V21) +# include "syscall_ctxcreate-v21.hc" +#endif + +#if defined(VC_ENABLE_API_V13) || defined(VC_ENABLE_API_V21) xid_t -vc_ctx_create(xid_t xid) +vc_ctx_create(xid_t xid, struct vc_ctx_flags *flags) { - CALL_VC(CALL_VC_V13A(vc_ctx_create, xid)); + CALL_VC(CALL_VC_V21 (vc_ctx_create, xid, flags), + CALL_VC_V13A(vc_ctx_create, xid, flags)); } #endif