summaryrefslogtreecommitdiff
path: root/oryxc
diff options
context:
space:
mode:
Diffstat (limited to 'oryxc')
-rw-r--r--oryxc/src/compiler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/oryxc/src/compiler.rs b/oryxc/src/compiler.rs
index 123475e..8ad00fb 100644
--- a/oryxc/src/compiler.rs
+++ b/oryxc/src/compiler.rs
@@ -233,7 +233,7 @@ where
let mut workers = Box::new_uninit_slice(flags.threads);
let mut stealers = Box::new_uninit_slice(flags.threads);
for i in 0..flags.threads {
- let w = Worker::new_fifo();
+ let w = Worker::new_lifo();
stealers[i].write(w.stealer());
workers[i].write(w);
}