let's not clobber our local variables -- i think this is a good short-term fix until i get to hacking on the standard...

Original commit message from CVS:
let's not clobber our local variables -- i think this is a good short-term
fix until i get to hacking on the standard scheduler again.
This commit is contained in:
Andy Wingo 2002-04-22 04:43:28 +00:00
parent bede14df34
commit 16867f27e6

View file

@ -222,7 +222,7 @@ GstPluginDesc plugin_desc = {
plugin_init
};
static inline cothread* sched_create (GstStandardScheduler *scheduler, GstElement *element, cothread_func func)
static cothread* sched_create (GstStandardScheduler *scheduler, GstElement *element, cothread_func func)
{
cothread *ret = NULL;
@ -235,7 +235,7 @@ static inline cothread* sched_create (GstStandardScheduler *scheduler, GstElemen
return ret;
}
static inline void sched_switch (cothread *to)
static void sched_switch (cothread *to)
{
cothread *from = cothread_self ();