|
@@ -100,6 +100,7 @@ void * message_to_ui(void * p)
|
|
|
|
|
|
void _starpu_top_communications_threads_launcher(void)
|
|
void _starpu_top_communications_threads_launcher(void)
|
|
{
|
|
{
|
|
|
|
+#ifdef STARPU_TOP
|
|
pthread_t from_ui;
|
|
pthread_t from_ui;
|
|
pthread_t to_ui;
|
|
pthread_t to_ui;
|
|
pthread_attr_t threads_attr;
|
|
pthread_attr_t threads_attr;
|
|
@@ -164,5 +165,6 @@ void _starpu_top_communications_threads_launcher(void)
|
|
|
|
|
|
_STARPU_PTHREAD_CREATE(&from_ui, &threads_attr, message_from_ui, NULL);
|
|
_STARPU_PTHREAD_CREATE(&from_ui, &threads_attr, message_from_ui, NULL);
|
|
_STARPU_PTHREAD_CREATE(&to_ui, &threads_attr, message_to_ui, NULL);
|
|
_STARPU_PTHREAD_CREATE(&to_ui, &threads_attr, message_to_ui, NULL);
|
|
|
|
+#endif
|
|
}
|
|
}
|
|
|
|
|