What kind of loop is for (;;)?

后端 未结 12 954
暖寄归人
暖寄归人 2021-01-04 04:42

Found in torvalds/linux-2.6.git -> kernel/mutex.c line 171

I have tried to find it on Google and such to no avail.

What does for (;;) instruct?<

12条回答
  •  别那么骄傲
    2021-01-04 05:11

    for(;;)

    is an infinite loop just like while(1). Here no condition is given that will terminate the loop. If you are not breaking it using break statement this loop will never come to an end.

提交回复
热议问题