Tagged Questions
sleep is a system call that suspends a process for a specified amount of time
68
votes
18answers
77k views
Javascript sleep
Is any better way than this function to make a sleep in javascript, or should I just use that function? (taken from here)
function pausecomp(millis)
{
var date = new Date();
var curDate = null;
...
45
votes
1answer
15k views
Sleep Command in T-SQL?
Is there to way write a T-SQL command to just make it sleep for a period of time? I am writing a web service asynchronously and I want to be able to run some tests to see if the asynchronous pattern ...
34
votes
4answers
15k views
time.sleep — sleeps thread or process?
In Python for the *nix, does time.sleep() block the thread or the process?
21
votes
6answers
24k views
21
votes
7answers
3k views
What's the algorithm behind sleep()?
Now there's something I always wondered: how is sleep() implemented ?
If it is all about using an API from the OS, then how is the API made ?
Does it all boil down to using special machine-code on ...
20
votes
3answers
10k views
Tell Ruby Program to Wait some amount of time
How do you tell a Ruby program to wait an arbitrary amount of time before moving on to the next line of code?
thanks
17
votes
5answers
4k views
Does sleep time count for execution time limit?
I have two questions concerning the sleep() function in PHP:
Does the sleep time affect the maximum execution time limit of my PHP scripts? Sometimes, PHP shows the message "maximum execution time ...
16
votes
8answers
571 views
Are longer sleeps (in C++) less precise than short ones
I have a task to do something every "round" minute(at xx:xx:00)
And I use something like
const int statisticsInterval=60;
time_t t=0;
while (1)
{
if (abs(t-time(NULL)==0)) //to ...
16
votes
4answers
15k views
How accurate is python's time.sleep()?
I can give it floating point numbers, such as
time.sleep(0.5)
but how accurate is it? If i give it
time.sleep(0.05)
will it really sleep about 50 ms?
15
votes
4answers
1k views
Significance of Sleep(0)
I used to see Sleep(0) in some part of my code where some infinite/long while loops are available. I was informed that it would make the time-slice available for other waiting processes. Is this true? ...
15
votes
12answers
16k views
Sleep Less Than One Millisecond
On windows you have a problem you typically never encounter on Unix. That is how to get a thread to sleep for less than one millisecond. On Unix you typically have a number of choices (sleep, usleep ...
14
votes
8answers
22k views
Bash: Sleep until a specific time/date
I want my bash-script to sleep until a specific time. So I want a command like "sleep" which takes no interval but a end-time and sleeps until then.
The "at"-deamon is no solution as I need to block ...
14
votes
3answers
11k views
12
votes
4answers
5k views
Java: Thread.currentThread().sleep(x) vs. Thread.sleep(x)
I have this in my code
Thread.currentThread().sleep(x);
Eclipse tells me to use the static
Thread.sleep(x);
instead, why? What's the difference, is there some difference in functionality at all ...
12
votes
3answers
1k views
Dim iPhone Screen, but don't let it sleep
Happy Holidays!
Alright, so here is my question. I have found by using Google (Hurray, GIYF) that I can disable the iPhone going to sleep in an application by using:
application.idleTimerDisabled = ...
12
votes
7answers
12k views
Compare using Thread.Sleep and Timer for delayed execution
I have a method which should be delayed running for a specified amount of time.
Should I use
Thread thread = new Thread(() => {
Thread.Sleep(millisecond);
action();
});
...
11
votes
3answers
541 views
Java bug in sleep() when changing OS time : any workaround?
The bug that annoys me is the same than this ticket. Basically, if you change the OS clock to a date in the past, all the thread that were sleeping at the time of the change won't wake up.
The ...
11
votes
8answers
23k 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 and smile at the ...
11
votes
4answers
12k 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 minute intervals). ...
10
votes
4answers
358 views
Pause a thread for less than one millisecond
In a messaging client test application, the producer thread needs to be throttled to avoid flooding the server.
As the transfer rates are around 25,000 messages per second (40 microseconds per ...
10
votes
9answers
6k views
Accurate Sleep for Java on Windows
Does anyone know a Library which provides a Thread.sleep() for Java which has an error not higher than 1-2 Millisecond?
I tried a mixture of Sleep, error measurement and BusyWait but I don't get ...
9
votes
3answers
334 views
What's the most CPU-efficient way to “waste time” in a thread?
I have a number of threads (100's) that each execute for a few seconds at a time. When they are executing, they spend a significant amount of that time waiting for a response from another system (a ...
9
votes
3answers
7k views
NetBeans / Java / New hint: Thread.sleep called in loop
In NetBeans, there's a new hint that says: Thread.sleep called in loop.
Question 1: How/when can it be a problem to sleep in a loop?
Question 2: If it's a problem, what should I do instead?
UPDATE: ...
9
votes
3answers
4k views
boost::this_thread::sleep() vs. nanosleep()?
I recently came across the need to sleep the current thread for an exact period of time. I know of two methods of doing so on a POSIX platform: using nanosleep() or using Boost::this_thread::sleep().
...
9
votes
2answers
2k views
Avoid the iphone go into sleep mode
I have made an iphone fitness application.
The issue i am unable to resolve here is that, while the application is running, the iphone goes in the sleep mode, and hence the accelerometer and sound ...
9
votes
4answers
8k views
When does Java's Thread.sleep throw InterruptedException?
When does Java's Thread.sleep throw InterruptedException? Is it safe to ignore it? I am not doing any multithreading. I just want to wait for a few seconds before retrying some operation.
9
votes
3answers
2k views
Off screen rendering when laptop shuts screen down?
I have a lengthy number-crunching process which takes advantage of quite abit of OpenGL off-screen rendering. It all works well but when I leave it to work on its own while I go make a sandwich I ...
9
votes
5answers
2k views
What happens to my app when my Mac goes to sleep?
When Mac OS X goes to sleep, due to closing a laptop or selecting "Sleep" from the Apple menu, how does it suspend an executing process?
I suppose non-windowed processes are simply suspended at an ...
8
votes
3answers
132 views
Sleeping in a pooled C# thread
In this web tutorial on threading in C#, Joseph Albahari writes: "Don't go sleeping in pooled threads!" Why should you not do this? How badly can it affect performance? (It's not that I want to do it; ...
8
votes
1answer
8k views
Android Sleep/Standby Mode
I have made an app that starts a service, which starts a timer, which fires off a small function after an amount of time. This is working great on the emulator and on the Motorola Droid 1, but it ...
8
votes
5answers
608 views
What is a practical use for PHP's sleep()?
I just had a look at the docs on sleep().
Where would you use this function?
Is it there to give the CPU a break in an expensive function?
Any common pitfalls?
Cheers.
8
votes
5answers
1k views
Best way to slow down a thread? Is using Sleep() OK?
I've written a C++ library that does some seriously heavy CPU work (all of it math and calculations) and if left to its own devices, will easily consume 100% of all available CPU resources (it's also ...
8
votes
5answers
5k views
Using Thread.Sleep() in a Windows Service
I'm writing a windows service that needs to sleep for long periods of time (15 hrs is the longest it will sleep, 30 mins is the shortest). I'm currently using Thread.Sleep(calculatedTime) to put my ...
8
votes
4answers
904 views
How can I know when Windows is going into/out of sleep or Hibernate mode?
Is it possible to subscribe to a Windows event that fires when Windows is going into or coming out of Sleep or Hibernate state?
I need my application to be made aware when the computer is going to ...
7
votes
7answers
221 views
Acceptable use of Thread.Sleep()
I'm working on a console application which will be scheduled and run at set intervals, say every 30 minutes. Its only purpose is to query a Web Service to update a batch of database rows.
The Web ...
7
votes
1answer
2k views
SwitchToThread vs Sleep(1)
I'm wondering what's the actual difference between calling Thread.Sleep(1) and calling SwitchToThread (if we ignore that it's currently not exposed by the BCL).
Joe Duffy mentions in his post that:
...
7
votes
4answers
1k views
Code in NSTimer prevents automatic sleep
I have an NSTimer running in my application that collects some data and sends it to a server periodically. In production the timer will fire every few hours.
I am worried about interfering with ...
7
votes
4answers
2k views
how do I wait on console input in c# for 15 seconds or so
I need to ask for input in console and wait for few sec may be a min after that I need to default to some value. How can basically time our on console input in c# and proceed with default settings? If ...
7
votes
3answers
4k views
PHP sleep() silently hogs CPU
I'm running Apache on Linux within VMWare. One of the PHP pages I'm requesting does a sleep(), and I find that if I attempt to request a second page whilst the first page is sleep()'ing, the second ...
6
votes
3answers
224 views
Sleep() is a bad design, but appears to be my only option
I'm writing an IO class to upload/download files to a controller over RS-232 serial. Unfortunately, I cannot send a whole file all at once, I have to break it into packets and send it a little bit at ...
6
votes
1answer
285 views
Can I prevent phone from sleep on a webpage
In app I can use http://developer.android.com/reference/android/os/PowerManager.WakeLock.html
but is there a way to keep webpage running and prevent from going to sleep?
It would be nice if it runs at ...
6
votes
2answers
238 views
Printing in the same line with a pause in C
I want to make my program to print something, then wait for a few seconds and then print something else in the same line. I've tried to write it as:
printf ("bla bla bla");
sleep (2);
printf ("yada ...
6
votes
8answers
423 views
increasing time delay for login to stop bruteforcing, good idea?
I have set up my db to log every failed login attempt. I thought I would multiply the number of failed attempts with 0.05 seconds or something. Something like:
time_nanosleep(0, (50000000 ...
6
votes
2answers
406 views
Is it possible to put a single monitor to sleep using WinAPI/C#?
By using the Windows API it is possible to put the monitors into sleep mode:
[DllImport("user32.dll")]
static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);
and ...
6
votes
4answers
1k views
Bash: infinite sleep
I use startx to start X which will evaluate my .xinitrc. In my .xinitrc I start my window manager using /usr/bin/mywm. Now, if I kill my WM (in order to f.e. test some other WM), X will terminate too ...
6
votes
4answers
2k views
Looking for a simple alternative to Thread.Sleep
HI,
During the development of my app, I was using Thread.Sleep to give our external devices some time to adjust to settings before making queries, as they are quite old and slow.
I now want to ...
6
votes
2answers
2k views
C# put pc to sleep or hibernate
I want to put my system to either sleep or hibernate, two different options.
How would I do this with API's, I don't really want to use Process, and that doesn't allow me to choose what method I want ...
6
votes
4answers
4k views
6
votes
13answers
488 views
Which is the better method? Allowing the thread to sleep for a while or deleting it and recreating it later?
We have a process that needs to run every two hours. It's a process that needs to run on it's own thread so as to not interrupt normal processing.
When it runs, it will download 100k records and ...
5
votes
3answers
90 views
Thread.sleep() in a while loop
I notice that NetBeans is warning me about using Thread.sleep() in a while loop in my Java code, so I've done some research on the subject. It seems primarily the issue is one of performance, where ...