Can it be a loop with or without statements?
while (1) { //Empty }
OR
int i = 0; while (1) { i++; }
I'm pretty sure you're talking about busy wait where you have a loop polling for some condition every iteration.