Commit ec8d0c4a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove unneeded vlc_signal_object_maybe hack

(cherry picked from commit d6c0f242)
parent c2a6b79e
...@@ -204,16 +204,6 @@ struct vlc_object_internals_t ...@@ -204,16 +204,6 @@ struct vlc_object_internals_t
#define vlc_internals( obj ) (((vlc_object_internals_t*)(VLC_OBJECT(obj)))-1) #define vlc_internals( obj ) (((vlc_object_internals_t*)(VLC_OBJECT(obj)))-1)
/* Signal an object without checking for locking consistency. This is wrong. */
#ifdef __GNUC__
__attribute__((deprecated))
#endif
static inline void
vlc_object_signal_maybe (vlc_object_t *p_this)
{
vlc_cond_signal (&(vlc_internals(p_this)->wait));
}
/** /**
* Private LibVLC instance data. * Private LibVLC instance data.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment