Freeing nodes in a GList

2008-05-08 Thread Bryan Christ
If I free all of the nodes in a GList with g_list_delete_link() do I still need to do a g_list_free to free all of the memory allocated by the GList? -- Bryan ___ gtk-devel-list mailing list gtk-devel-list@gnome.org

Recursive Mutexes

2008-03-22 Thread Bryan Christ
Can anyone tell me if there was ever a version of glib2 which suffered from a bug in g_static_rec_mutex* functions? -- Bryan ___ gtk-devel-list mailing list gtk-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-devel-list

Contributing to Glib

2007-11-26 Thread Bryan Christ
Can anyone point me to some resources for contributing to Glib. I have combed the gtk.org website looking for a FAQ or contributor guide but can't find anything. -- Bryan ___ gtk-devel-list mailing list gtk-devel-list@gnome.org

Re: multithread

2005-11-16 Thread Bryan Christ
How accurate does your timer need to be? If it doesn't have to be very precise, I would do something like... gpointer my_thread(gpointer anything) { gbooleanexit_flag=TRUE; while(exit_flag==FALSE) { exit_flag=do_work();