Re: Could this be part of the Boomerang problem?

Rogier Wolff (R.E.Wolff@BitWizard.nl)
Sun, 15 Jun 1997 09:00:57 +0200 (MET DST)


Michael H. Warfield wrote:
>
>
> These two lines are "if( set_bit( .... ) )".
>
> It seems that the "set_bit" function is (or is now) a void function.

The function was not used as "set_bit" but as "test_and_set_bit".
These were integrated into one function called "set_bit" but nowadays
there are two. One is called "set_bit" and it will only do that. There
is also a function "test_and_set_bit" which will do what it says.

Nice opportunity to submit your first kernel patch.

Roger.