mirror of
https://github.com/vsariola/sointu.git
synced 2026-02-07 16:20:21 -05:00
feat(tracker): multithreading is enabled with a separate bool toggle
This commit is contained in:
parent
4bb5df9c87
commit
287bd036a6
@ -5,7 +5,4 @@ import (
|
||||
"github.com/vsariola/sointu/vm"
|
||||
)
|
||||
|
||||
var Synthers = []sointu.Synther{
|
||||
vm.GoSynther{},
|
||||
vm.MakeMultithreadSynther(vm.GoSynther{}),
|
||||
}
|
||||
var Synthers = []sointu.Synther{vm.GoSynther{}}
|
||||
|
||||
@ -3,11 +3,9 @@
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"github.com/vsariola/sointu/vm"
|
||||
"github.com/vsariola/sointu/vm/compiler/bridge"
|
||||
)
|
||||
|
||||
func init() {
|
||||
Synthers = append(Synthers, bridge.NativeSynther{})
|
||||
Synthers = append(Synthers, vm.MakeMultithreadSynther(bridge.NativeSynther{}))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user