paramspecs: add note about racyness

Add a note about potential racyness in _is_mutable().
This commit is contained in:
Wim Taymans 2009-04-14 19:11:44 +02:00
parent 7e0bdbf208
commit 004f981edb

View file

@ -214,6 +214,11 @@ gst_param_spec_fraction (const gchar * name, const gchar * nick,
* Checks if an object property for the GstElement given in @element
* may be modified given the current state of @element.
*
* Note: By the time this method returns, the state of the element might have
* changed already. Use this method only if you can control the state of the
* element between calling this method and setting the property, such as with a
* mutex.
*
* Returns: TRUE if the property may be modified
*
* Since: 0.10.23