Skip to content
Snippets Groups Projects
Commit 4f022e09 authored by Danny Auble's avatar Danny Auble
Browse files

removed gdk_flush() which could cause deadlock it appears and it doesn't appear completely needed.

parent 25c9b0fb
No related branches found
No related tags found
No related merge requests found
......@@ -312,7 +312,7 @@ static void *_editing_thr(gpointer arg)
msg_id = GPOINTER_TO_INT(arg);
gtk_statusbar_remove(GTK_STATUSBAR(main_statusbar),
STATUS_ADMIN_EDIT, msg_id);
gdk_flush();
//gdk_flush();
gdk_threads_leave();
return NULL;
}
......@@ -1428,7 +1428,7 @@ extern void *popup_thr(popup_info_t *popup_win)
//g_print("locked popup_thr\n");
gdk_threads_enter();
(specifc_info)(popup_win);
gdk_flush();
//gdk_flush();
gdk_threads_leave();
g_static_mutex_unlock(&sview_mutex);
//g_print("done popup_thr\n");
......
......@@ -47,7 +47,7 @@ void *_refresh_thr(gpointer arg)
gdk_threads_enter();
gtk_statusbar_remove(GTK_STATUSBAR(main_statusbar),
STATUS_REFRESH, msg_id);
gdk_flush();
//gdk_flush();
gdk_threads_leave();
return NULL;
}
......
......@@ -182,7 +182,7 @@ void *_page_thr(void *arg)
sview_init_grid(reset_highlight);
reset_highlight=false;
(display_data->get_info)(table, display_data);
gdk_flush();
//gdk_flush();
gdk_threads_leave();
// g_static_mutex_unlock(&sview_mutex);
/* END_TIMER; */
......@@ -226,7 +226,7 @@ void *_grid_init_thr(void *arg)
table = GTK_TABLE(bin->child);
/* set up the main grid */
rc = get_system_stats(table);
gdk_flush();
//gdk_flush();
gdk_threads_leave();
if(rc != SLURM_SUCCESS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment