The unified diff between revisions [76aea49e..] and [f288316d..] 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 [76aea49e8393c839b573eaac31eb8e2fb218d2d6]
# new_revision [f288316da9714d1e11a3979cf3854e3cd99b5cb4]
#
# patch "src/lsi/vm.h"
#  from [6ad84b9f243d5acff4ddeca82fc4a96caeb0930a]
#    to [81ad4a5acde3eb1f6575f48f32a3f1fabb5ba740]
#
============================================================
--- src/lsi/vm.h	6ad84b9f243d5acff4ddeca82fc4a96caeb0930a
+++ src/lsi/vm.h	81ad4a5acde3eb1f6575f48f32a3f1fabb5ba740
@@ -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,10 @@ 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_CMDWRITEQ	20
 
-#define VM_USERQMIN     10
+#define VM_USERQMIN     20
 #define VM_NOQUEUE      (-1)