summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJoshua Judson Rosen2017-03-26 22:24:41 -0400
committerJoshua Judson Rosen2017-03-28 22:07:50 -0400
commit7be1d57200e9672910ae0cef74ee0074e171dbf1 (patch)
tree4f0a00643d025d9404484f4592a8f6c81bc40710 /include
parentapi: accept symbols (as well as strings) (diff)
downloadgnurobots-7be1d57200e9672910ae0cef74ee0074e171dbf1.tar.gz
Invert GTK+/guile thread relationship
Making the GTK+ thread the main thread, and subordinating the guile thread, lets the GUI continue to live after the robot has died-- which means that we'll be able to switch to just doing everything in the GUI without requiring a separate xterm to see the final stats after the robot dies.
Diffstat (limited to 'include')
-rw-r--r--include/ui-window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ui-window.h b/include/ui-window.h
index d9740a2..c8fa337 100644
--- a/include/ui-window.h
+++ b/include/ui-window.h
@@ -54,7 +54,7 @@ struct _UIWindowClass
GType ui_window_get_type(void) G_GNUC_CONST;
GtkWidget *ui_window_new();
-void ui_window_postinit(UIWindow *window, Map* map);
+void ui_window_postinit(UIWindow *window, Map* volatile* map);
G_END_DECLS