Alex Graveley <[EMAIL PROTECTED]> writes:
> 
> Why are non-static recursive and read-write locks missing from Glib2?!
> 

I always wondered why we have static vs. dynamic, since you can
use any static mutex dynamically as well.

  mutex = g_new (GStaticRecMutex, 1);
  g_static_mutex_init (mutex);

So it would have made more sense to me to just call it GRecMutex and 
had g_rec_mutex_new() as a convenience function that did the above.

Anyway, too late until 2.2.

Havoc
_______________________________________________
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to