Tagged Questions
The busy-loop tag has no wiki summary.
6
votes
6answers
120 views
Why blocking instead of looping?
What are some reasons why writing the following piece of code is considered bad practice?
while (someList.isEmpty()) {
try {
Thread.currentThread().sleep(100);
}
catch (Exception ...
2
votes
5answers
187 views
Why does a busy loop take 100% of the CPU?
Why does a busy loop often uses 100% of the cpu time while loops that implement complex algorithms would use much much less?
thanks :)
2
votes
5answers
748 views
Get rid of busy waiting during asynchronous cuda stream executions
I looking for a way how to get rid of busy waiting in host thread in fallowing code (do not copy that code, it only shows an idea of my problem, it has many basic bugs):
cudaStream_t steams[S_N];
for ...
1
vote
5answers
1k views
Good way to create an idle loop in C#?
I have an app it sets up a FileSystemWatcher. It should run indefinitely.
What is the best way to have it run in an idle loop?
I'm currently doing
FileSystemWatcher watch = ... //setup the watcher
...
0
votes
1answer
97 views
what is the different of busy loop with Sleep(0) and pause instruction?
i would like to wait on an event in my app which supposed to happen immediately, so i don't want to put my thread on wait and wake it up later;
i wonder what are the difference between using Sleep(0) ...
0
votes
2answers
85 views
prettify will cause “script is busy” warning if the code is long
I'm using prettify by Google.
How to fix?