The unified diff between revisions [76aea49e..] and [6726c07e..] 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 [6726c07e4874e76763555e1476ce427743e8f73c] # # 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)