Default to pthreads in sync2 for *nix

This commit is contained in:
gingerBill
2021-04-13 19:04:44 +01:00
parent 12296a0dcc
commit bee8beb2c9
5 changed files with 12 additions and 18 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
//+private
package sync2
when !#config(ODIN_SYNC_USE_PTHREADS, false) {
when !#config(ODIN_SYNC_USE_PTHREADS, true) {
import "core:time"
+1 -1
View File
@@ -2,7 +2,7 @@
//+private
package sync2
when #config(ODIN_SYNC_USE_PTHREADS, false) {
when #config(ODIN_SYNC_USE_PTHREADS, true) {
import "core:time"
import "core:sys/unix"