Nikolaj Kiær Thygesen wrote:
> Hey list,
>
> I'm currently writing a multi threaded gtk-app, and knowing that
> calling gtk_main() simultaneously from different threads is a no-go,
it's more subtle: calling gtk functions simultaneous from different
threads is a no-go. gtk (and X) is not thread-sa
Hey list,
I'm currently writing a multi threaded gtk-app, and knowing that
calling gtk_main() simultaneously from different threads is a no-go, I was
quite surprised to find that the following fragment seemed to work when being
accidentally called from a thread different from the one wh