diff options
author | Joshua Judson Rosen | 2017-03-26 22:24:41 -0400 |
---|---|---|
committer | Joshua Judson Rosen | 2017-03-28 22:07:50 -0400 |
commit | 7be1d57200e9672910ae0cef74ee0074e171dbf1 (patch) | |
tree | 4f0a00643d025d9404484f4592a8f6c81bc40710 /include | |
parent | api: accept symbols (as well as strings) (diff) | |
download | gnurobots-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.h | 2 |
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 |