ready for tagging
[util-vserver.git] / lib / syscall_ctxcreate-v13.hc
index f29b087..b999ef6 100644 (file)
@@ -1,4 +1,4 @@
-// $Id: syscall_ctxcreate-v13.hc,v 1.2 2004/04/22 20:45:50 ensc Exp $    --*- c -*--
+// $Id: syscall_ctxcreate-v13.hc 2578 2007-08-08 20:05:26Z dhozac $    --*- c -*--
 
 // Copyright (C) 2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
 //  
 #endif
 
 static inline ALWAYSINLINE xid_t
-vc_ctx_create_v13(xid_t xid)
+vc_ctx_create_v13(xid_t xid, struct vc_ctx_flags *flags)
 {
-  xid_t                res = vserver(VCMD_ctx_create, CTX_USER2KERNEL(xid), 0);
+  xid_t                res = vserver(VCMD_ctx_create_v0, CTX_USER2KERNEL(xid), 0);
+
+  if (flags) {
+    /* no sane way to report errors here */
+    vc_set_cflags(xid, flags);
+  }
 
   return CTX_KERNEL2USER(res);
 }