> Not at all. The yield() function would just be a define to
> the code which no longer works with the new scheduler, ie:
>
> #define yield() \
> current->policy |= SCHED_YIELD; \
> schedule();
or better :
#define yield() \
do { \
current->policy |= SCHED_YIELD; \
schedule(); \
} while (0)
- Davide
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/