Re: Help with a multi-threaded application. Spot a crash.

2012-05-31 Thread Osmo Antero
Hello, Thank you very much. I actually commented out pretty much everything but the G_IS_OBJECT(). I took it granted that GRegex was a gobject. Now learned that it's a POD, Perl Object. The actual code has also a LockedCounter (mutex controlled) object that feeds each thread with a unique

Re: Help with a multi-threaded application. Spot a crash.

2012-05-31 Thread jcupitt
On 31 May 2012 07:11, Osmo Antero osm...@gmail.com wrote: The actual code has also a LockedCounter (mutex controlled) object that feeds each thread with a unique sequence number. Only the thread with highest sequence number can tick and change the GUI, others will simply die away. I expect

Re: Help with a multi-threaded application. Spot a crash.

2012-05-31 Thread David Nečas
On Thu, May 31, 2012 at 07:11:10AM +0100, Osmo Antero wrote: Now learned that it's a POD, Perl Object. I meant Plain Old Data, but of course in C. Nothing in GLib (as opposed to GObject and GIO) is an GObject. Yeti ___ gtk-app-devel-list mailing

gtk_container_add and vboxes

2012-05-31 Thread Allin Cottrell
I was modifying some gtk code to hush deprecations from gtk 3.4.3 and came across the following oddity. One might think that these should be equivalent: 1) as per gtk2: GtkWidget *box = gtk_vbox_new(FALSE, 4); 2) as recommended in gtk3: GtkWidget *box =