The unified diff between revisions [a7f61676..] and [43bb367e..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'src/lsi/vm.h'

#
# old_revision [a7f61676c8d04ecf082be8ae39a40b4e7bba3462]
# new_revision [43bb367e69d2a944206fd7f641ce73111e4bb780]
#
# patch "src/lsi/vm.h"
#  from [6ad84b9f243d5acff4ddeca82fc4a96caeb0930a]
#    to [4e84a410186bc2516c890aaedd6b6c3705d1f30a]
#
============================================================
--- src/lsi/vm.h	6ad84b9f243d5acff4ddeca82fc4a96caeb0930a
+++ src/lsi/vm.h	4e84a410186bc2516c890aaedd6b6c3705d1f30a
@@ -3,8 +3,11 @@ int vm_spawn(char *);
 void vm_init(void);
 void vm_load(char *);
 int vm_spawn(char *);
+int vm_spawn_args(char *, int, ...);
 void vm_run(void);
 void vm_register_signal_fd(int /* fd */, int /* queue */);
+void vm_unregister_signal_fd(int /* fd */);
+void vm_wakeup(int queue);
 
 #define VM_MAXQUEUES    512
 #define VM_RUNQ         0
@@ -13,8 +16,9 @@ void vm_register_signal_fd(int /* fd */,
 #define VM_MOUSEQ	6
 #define VM_BEATQ	7
 #define VM_MIDIQ	8
-#define VM_SOCKQ	9
+#define VM_CMDLISTENQ	9
+#define VM_CMDREADQ	10
 
-#define VM_USERQMIN     10
+#define VM_USERQMIN     20
 #define VM_NOQUEUE      (-1)