|
If you want to do the same thing continuously:
1: Use sleep ()
while (TRUE)
{
sleep (100);
}
2: Using timer events
============================
Which of these two methods is more efficient and consumes less resources, provided that it is in the "" thread "" |
|