vote up 5 vote down star
2
#include <stdio.h>

int main() {
  while(!DONE) {
    /* check for stuff */
  }
  return 0;
}

The above code sample uses 100% cpu until DONE is true. How can I implement a program that loops and only terminates when DONE, but which doesn't use 100% cpu? Modern languages use something like App.ProcessMessages or something like that to give the OS the control for the moment and then return to the loop.

I'm new at C, obviously... using latest GCC, linux and windows (a portable solution would be great!)

flag
7  
You should be using a synchronization object, one that you can wait on until it becomes signaled, that way you wouldn't consume CPU at all. – Lasse V. Karlsen Aug 3 at 14:12
2  
What is DONE and what will cause it to be non-zero? Presumably it makes sense to carry on processing until the 'check for stuff' evaluates something that sets DONE to be non-zero? – Charles Bailey Aug 3 at 14:13
Lasse V. Karlsen: Your solution seems to make sense (it probably does make a lot of sense, but I just don't have that knowledge). Could you please elaborate? Should I investigate threads? (an example would be nice) Charles Bailey: DONE should be an int (done instead of DONE) and it would be set to 1 when the user opted to quit the app, for example. I'm sorry if I can't explain myself well enough.. – pwseo Aug 3 at 14:19
Well, how is DONE set anyway? Obviously it must be set by a thread, otherwise your loop won't actually execute while some other code is executing, no? If you're not using a thread, does that mean that "check for stuff" is most likely the code that uses 100% cpu? If so, then how often do you really need to execute this? – Lasse V. Karlsen Aug 3 at 14:22
3  
You shouldn't need to use anything thread-related to make a single-threaded app not busy-wait. Can you please tell us (generally, even) what the code is doing in the loop? You seem to imply that it will be accepting user input. That by itself should cause it to spend plenty of time waiting and not consuming the CPU. – Tyler McHenry Aug 3 at 14:22
show 3 more comments

10 Answers

vote up 6 vote down check

It depends what you want to do inside this loop.

If you are waiting inside the loop (i.e. if keypressed { do something} then your mechanism will waste system resources giving nothing in return. A faster processor will just make more idle loops. This can be solved by waiting for events Not just sleep, but preferably an event which triggers that something meaningful can be done. For instance, a file operation (stdin is also a file) would be a portable mechanism. This will give way to other applications until data is available. When you become more specific it may be required to dive into semaphores or signals which are often OS dependent. An abstraction layer can resolve this.

If you are doing something useful (i.e. processing a lot of data), then 100% cpu load just means that the processor is used in the most efficient way. You can rely on the operating system to give way to other and possibly higher priority tasks.

Using a function like sleep will lower cpu usage, but your application will be slower. It will require to get a tradeoff between acceptable performance and cpu load. The maximum execution speed will be defined by your sleep parameter, and no longer by the cpu speed. Also, if power is a concern (i.e. battery life time), then this will require the cpu to wakeup (end of sleep period) with no work to be done; i.e. a different waste of system resources.

link|flag
I guess I'll have to learn the semaphores and signals then Any specific pointers on that? :) – pwseo Aug 3 at 14:31
What kind of processing is inside the main loop? Messages, signals, semaphores are more related to the operating system thant he underlying language. For instance, ibm.com/developerworks/eserver/… shows how semaphores are handled in windows versus linux. If you need to support both, you may either use POSIX (which is optional for windows, i.e. in cygwin) or put the code in a platform-dependent module which you create for each OS. – Adriaan Aug 4 at 6:44
vote up 3 vote down

use

Sleep(int milliSeconds)

link|flag
1  
The argument to sleep is actually a number of seconds, not milliseconds. – Tyler McHenry Aug 3 at 14:15
1  
I think it actually depends on the OS...while you're right about the parameter being seconds under Unix/Linux/*BSD, I think I remember it being milliseconds under Windows...It's been years though, so I could be wrong... – Nicolas Aug 3 at 14:23
3  
sleep() takes number of seconds. usleep() (BSD and POSIX) takes microseconds. nanosleep() (POSIX too) takes nanoseconds. – qrdl Aug 3 at 14:24
1  
Sleep should be a last resort, as it will wake the processor even if no work is to be done. This can kill power management on laptops and the like. – Sid Farkus Aug 3 at 14:28
vote up 2 vote down

What exactly are you checking for?

If you're checking something volatile that is changed by hardware or another process, just call sleep in your loop.

If you are waiting on a file descriptor or a network socket descriptor, you will want to use select or poll in your loop to wait for the descriptor to have data ready for consumption.

link|flag
vote up 0 vote down

Use yield().

link|flag
This is not portable, since it is defined by neither the C standard nor POSIX. – Tyler McHenry Aug 3 at 14:18
1  
Wouldn't that just give other processes more time, still taking all the time other processes do not consume? – liori Aug 3 at 14:21
vote up 0 vote down

If I'm guessing correctly (I don't know about it), the equivalent of App.ProcessMessages is doing blocking IO. And as I don't know of any implementation of C on multitasking OS which uses polling, any standard C IO should be safe.

link|flag
vote up 3 vote down

Your two options would be polling, and some kind of event notification.

Polling would be easiest to program -- basically you have your thread sleep for a short while every pass through the loop. This releases the processor to other tasks. The downside is that there will be a delay in your "check for stuff" code -- so if you're sleeping for a second, it might be up to a second before your code detects the condition. Your code here will be easy to port.

The other option is to wait on a POSIX conditional, or Windows event or something like that. Not only will this code be changed, but then the "stuff you're checking" will need to trigger the flag to say it is done. This would be a little less portable code, although there are probably libraries to abstract away the platform. But you'll get immediate results to the event, and no wasted processor time checking for things that aren't there.

link|flag
+1 for suggesting use of POSIX synchronization. – Stephen C Aug 3 at 14:23
vote up 6 vote down

You have several choices:

  1. Use sleep() to force the process to suspend periodically and allow other process to use the CPU
  2. Run at a lower priority level - which will cause the OS to assign less CPU time
  3. Use a mutex or other synchronization object to detect when work is available - which will keep the process from consuming any CPU time unless it is actually doing work
  4. If you get work faster than you can process it - you may still need to use some sort of sleep/priority model to avoid completely consuming the CPU.

Option #2 can be tricky to do in a platform/OS neutral manner. Your best bet is to launch the process and change its priority in the runtime environment.

link|flag
vote up 0 vote down

On windows, you can use Sleep(int milliseconds), defined on windows.h.

link|flag
vote up 0 vote down

If I understood right, you said in the comments that DONE can be changed from other threads. If so, condition variables make sense. With pthreads, one would do:

In the thread that waits:

pthread_mutex_lock(&mutex);
while (!DONE) {
     pthread_cond_wait(&cond, &mutex);
}
pthread_mutex_unlock(&mutex);

In other threads, when DONE is changed:

pthread_mutex_lock(&mutex);
DONE = 1;
pthread_cond_signal(&cond);
pthread_mutex_unlock(&mutex);
link|flag
vote up 0 vote down

Sleep(0); is enough

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.