|
@@ -111,9 +111,7 @@ multiple workers may use the same condition variable. For instance, in the case
|
|
|
of a scheduling strategy with a single task queue, the same condition variable
|
|
|
would be used to block and wake up all workers. The initialization method of a
|
|
|
scheduling strategy (init_sched) must call this function once per worker. */
|
|
|
-#if defined(_MSC_VER)
|
|
|
-void starpu_worker_set_sched_condition(int workerid, void **sched_cond, void **sched_mutex);
|
|
|
-#else
|
|
|
+#if !defined(_MSC_VER)
|
|
|
void starpu_worker_set_sched_condition(int workerid, pthread_cond_t *sched_cond, pthread_mutex_t *sched_mutex);
|
|
|
#endif
|
|
|
|