gentoo: use /var/run for new /run compatibility
[util-vserver.git] / lib / syscall_ctxcreate-v13.hc
index 930ed18..250f1fd 100644 (file)
 #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_v0, CTX_USER2KERNEL(xid), 0);
 
+  if (flags) {
+    /* no sane way to report errors here */
+    vc_set_cflags(xid, flags);
+  }
+
   return CTX_KERNEL2USER(res);
 }