Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@humpty.(none)>2010-09-27 03:37:25 +0400
committerJohn Langford <jl@humpty.(none)>2010-09-27 03:37:25 +0400
commite8b3190a12677787103ce3c0eb0f50f2f190259c (patch)
treed45142732eba85170b8585e1d8949ec8721f3d92 /delay_ring.h
parentb1debe5827a0038d43b087e1a7fc273cb1dbfc36 (diff)
fixed (hopefully) final threading bug from Nikos.
Diffstat (limited to 'delay_ring.h')
-rw-r--r--delay_ring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/delay_ring.h b/delay_ring.h
index e7efc08f..22ac8dd3 100644
--- a/delay_ring.h
+++ b/delay_ring.h
@@ -6,7 +6,7 @@ void destroy_delay_ring();
example* get_delay_example(size_t thread);
example* blocking_get_delay_example(size_t thread);
void delay_example(example* ex, size_t count);
-void delay_global_example(example* ex, size_t count);
+void delay_global_example(example* ex);
bool thread_done(size_t thread);
#endif