http://qs1969.pair.com?node_id=804402

llancet has asked for the wisdom of the Perl Monks concerning the following question:

In gnome's site, it is said that threads must be created before any GTK widgets created, just like those on Tk. However, in Gtk2 perldoc, it provides an option:

use Gtk2 qw/-init -threads-init/;
, and says that would allow the use of
Gtk2::Gdk::Threads->enter
and
Gtk2::Gdk::Threads->leave

I cannot find any more documentation about that. Does that kind of mechanism provides threaded callbacks?