vserver 1.9.3
[linux-2.6.git] / include / linux / vserver / signal.h
index 3911127..7d0d430 100644 (file)
@@ -6,14 +6,22 @@
 /*  context signalling */
 
 #define VCMD_ctx_kill          VC_CMD(PROCTRL, 1, 0)
+#define VCMD_wait_exit         VC_CMD(EVENT, 99, 0)
 
-struct  vcmd_ctx_kill_v0 {
+struct vcmd_ctx_kill_v0 {
        int32_t pid;
        int32_t sig;
 };
 
+struct vcmd_wait_exit_v0 {
+       int32_t a;
+       int32_t b;
+};
+
 #ifdef __KERNEL__
+
 extern int vc_ctx_kill(uint32_t, void __user *);
+extern int vc_wait_exit(uint32_t, void __user *);
 
 #endif /* __KERNEL__ */
 #endif /* _VX_SIGNAL_H */