Re: 2.4.19-preX: What we really need: -AA patches finally in the

Davide Libenzi (davidel@xmailserver.org)
Thu, 28 Feb 2002 19:43:57 -0800 (PST)


On Fri, 1 Mar 2002, Rik van Riel wrote:

> 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/