diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gtkext/gtkbufferview.c | 5 | ||||
-rw-r--r-- | src/main.c | 5 | ||||
-rw-r--r-- | src/plugins/pglist.c | 4 | ||||
-rw-r--r-- | src/project.c | 12 |
4 files changed, 4 insertions, 22 deletions
diff --git a/src/gtkext/gtkbufferview.c b/src/gtkext/gtkbufferview.c index e05fcd0..bcf7ba0 100644 --- a/src/gtkext/gtkbufferview.c +++ b/src/gtkext/gtkbufferview.c @@ -695,8 +695,6 @@ void gtk_buffer_view_attach_buffer(GtkBufferView *view, GBufferView *buffer, boo view->buffer_view = buffer; - //gdk_threads_enter(); - /* Taille des marges */ view->line_height = g_buffer_view_get_line_height(view->buffer_view); @@ -715,9 +713,6 @@ void gtk_buffer_view_attach_buffer(GtkBufferView *view, GBufferView *buffer, boo gtk_widget_queue_draw(GTK_WIDGET(view)); - //gdk_flush (); - //gdk_threads_leave(); - } @@ -114,10 +114,6 @@ int main(int argc, char **argv) bindtextdomain(PACKAGE, LOCALE_DIR); textdomain(PACKAGE); - /* init threads */ - gdk_threads_init(); - gdk_threads_enter(); - /* Initialisation de GTK */ g_set_prgname("Chrysalide"); setlocale (LC_ALL, ""); @@ -190,7 +186,6 @@ int main(int argc, char **argv) /* Exécution du programme */ gtk_main(); - gdk_threads_leave(); g_db_server_stop(server); diff --git a/src/plugins/pglist.c b/src/plugins/pglist.c index c2a2180..9286085 100644 --- a/src/plugins/pglist.c +++ b/src/plugins/pglist.c @@ -310,17 +310,21 @@ void run_plugins_on_binary(GLoadedBinary *binary, PluginAction action, bool lock { size_t i; /* Boucle de parcours */ + /* if (lock) gdk_threads_enter(); + */ for (i = 0; i < _list.plugins_count; i++) if (g_plugin_module_get_action(_list.plugins[i]) & action) g_plugin_module_execute_action_on_binary(_list.plugins[i], binary, action); + /* if (lock) { gdk_flush(); gdk_threads_leave(); } + */ } diff --git a/src/project.c b/src/project.c index fa5863a..9c4c636 100644 --- a/src/project.c +++ b/src/project.c @@ -324,15 +324,10 @@ void g_study_project_add_loaded_binary(GLoadedBinary *binary, GStudyProject *pro { size_t index; /* Indice du nouveau binaire */ - gdk_threads_enter(); - index = g_study_project_attach_binary(project, binary); g_panel_item_dock(G_PANEL_ITEM(project->binaries[index]->item)); - gdk_flush(); - gdk_threads_leave(); - } @@ -367,8 +362,6 @@ size_t g_study_project_attach_binary(GStudyProject *project, GLoadedBinary *bina { /* Préparation du support visuel */ - //gdk_threads_enter(); - switch (i) { case BVW_BLOCK: @@ -389,9 +382,6 @@ size_t g_study_project_attach_binary(GStudyProject *project, GLoadedBinary *bina gtk_widget_show(view); - //gdk_flush(); - //gdk_threads_leave(); - loaded->views[i] = GTK_VIEW_PANEL(view); gtk_view_panel_attach_binary(loaded->views[i], binary, @@ -400,8 +390,6 @@ size_t g_study_project_attach_binary(GStudyProject *project, GLoadedBinary *bina /* Intégration finale dans un support défilant */ - //gdk_threads_enter(); - scroll = qck_create_scrolled_window(NULL, NULL); gtk_container_add(GTK_CONTAINER(scroll), view); |