0
votes
0answers
45 views
wait for ajax response inside a loop
I need to wait for an ajax response inside a for loop. If I could I'd simply make a synchronous call instead of asynchronous, but I don't have that level of control: I'm using som …
4
votes
5answers
153 views
how is sleep implemented at OS level?
I am just interested how sleep(time in ms) is implemented in C lib or basically at the os level..
I am guessing ..
1) may be the based on the processor speed you do a while loop o …
1
vote
7answers
112 views
To make a choice between ManualResetEvent or Thread.Sleep()
I am not sure which strategy to adopt...I am focusing on my operation getting completed, but I'd also like to keep performance issues to a min too...there is a method called Execut …
1
vote
5answers
118 views
How to sleep for 5 seconds in Windows’s Command Prompt? (or DOS)
Windows's Snipping tool can capture the screen, but sometimes I want to capture the screen after 5 seconds, such as taking an image being displayed by the webcam. (run the script …
56
votes
53answers
3k views
Sleeping problems, computer addiction
How do you keep your mind from racing late into the night, thinking about programming problems, keeping you awake? My sleeping disorder / computer addiction has impacted my persona …
0
votes
3answers
82 views
How to make Sleep on background thread work with Invoke
I have a PictureBox control on a Form that is supposed to draw something every 100ms.
The background thread performs some calculation in a loop and after every iteration, it fires …
0
votes
0answers
47 views
iPhone Network Connection after kIOMessageSystemHasPoweredOn
I've built an app that runs in the background (jailbroken phone, Ver. 3.0/7A341) that checks my website every hour. When the device goes to sleep, I set a time to wake up if it sta …
3
votes
3answers
110 views
Can I make my service keep Windows from going to sleep?
I have a Windows service that needs to run on a PC that is left on 24 hours.
I can't rely on the PC having sleep/shut down disabled because it is something being installed on arou …
0
votes
5answers
106 views
How can I stop PHP sleep() affecting my whole PHP code?
So, on my arcade, howlingdoggames.com. I have a points system that gives you a point every time you visit a page with a game on, now, to reduce abuse of this, I would like to make …
0
votes
1answer
46 views
Why does SetThreadExecutionState(ES_SYSTEM_REQUIRED) prevent display power-off?
I'm attempting to keep the system on while allowing the display to power off, to allow a download to finish while the system is unattended. To achieve this I call:
SetThreadExecut …
1
vote
5answers
1k views
Is there an equivalent Javascript or Jquery sleep function ?
Hi.
I want something like this in javascript.
for (i = 0; i < 10; i++) {
alert(i);
// now sleep 1 sec
sleep(1000);
}
is there a built in Javascript or Jquery for …
1
vote
2answers
83 views
Shared Object Pool without Thread.Sleep?
I have developed an "object pool" and cannot seem to do it without using Thread.Sleep() which is "bad practice" I believe.
This relates to my other question "Is there a standard w …
0
votes
1answer
60 views
Is possible to use nanosleep in a infinite loop with select()?
Hi,
I have a C program that do recv/send operations from/to socket using a for(;;) loop and a select() to monitor the file descriptor. I need also this program to send a packet ev …
0
votes
2answers
89 views
Java: How does the method scheduledExecutorService.scheduleAtFixedRate() ensures real-time execution?
Hi there!
Because I'm executing a time critical task every second, I compared several methods to find the best way to ensure that my task is really executed in fixed time steps. A …
2
votes
3answers
343 views
Timer & TimerTask versus Thread + sleep in Java
I found similar questions asked here but there weren't answers to my satisfaction. So rephrasing the question again-
I have a task that needs to be done on a periodic basis (say 1 …
