sleep is a system call that suspends a process for a specified amount of time

learn more… | top users | synonyms

0
votes
2answers
30 views

Resuming a Java program when the computer sleeps?

I have a Java program that has a loop in it that checks for new messages every twenty seconds. Example: while (true) { Thread.sleep(20000); newMessages(); } This works when the computer is ...
2
votes
1answer
35 views

When a computer wakes from sleep mode, does it use the same physical addresses as before?

When a computer wakes from sleep mode, does it use the same physical addresses as before? Just curious about this one. I'd assume it could be since it suspends to memory. Is it possibly also ...
0
votes
0answers
18 views

Can I get a callback during the main loop of a WebPy server?

Lets say I have a very simply webpy script import web urls = ( '/', 'index' ) app = web.application(urls, globals()) class index: def GET(self): i = web.input(name = 'web') ...
0
votes
0answers
3 views

Querey regarding use of commas after variables in python eg %i,

Im currently working through the learn python the hard way website tutorials http://learnpythonthehardway.org/ and currently stuck on a section of question 10, the comment that the lecturer posted ...
0
votes
1answer
59 views

XE4 Firemonkey on iOS prevent sleep mode

I am developing an app in Firemonkey XE4 for iOS and need to prevent the device from sleeping when there is no user input. I have found this command for xcode development: [application ...
1
vote
0answers
16 views

Best approach to implement an accurate recorded stream execution

I have a stream of events recorded (for example an ArrayList<InputEvent> sorted by InputEvent.getWhen()). Differences in time between consecutive events can be of the order of tens of ...
0
votes
2answers
24 views

Creating the Timer which will invoke a method every XXXXms

I would like to create an object which will invoke method called loadNextImage every let's say 1000ms. I can do it by creating a new Thread which will sleep for 1000 then call this method but I do not ...
3
votes
2answers
58 views

Sleeping for certain numbers lasts forever in Linux bash

I'm writing a bash script in Ubuntu 13.04 that requires to sleep a specific number of seconds passed by parameter. I've made sure that sleep allows floating point numbers looking in the documentation: ...
0
votes
0answers
47 views

Preveting computer from going to sleep with program C# [duplicate]

I'm working on a WinForm project and I'm almost done, but I need this one last thing. My program needs to be running at all time when using it so I need some way to prevent the computer from going to ...
0
votes
0answers
39 views

c++ linux Eventloop vs. sleep() vs select()

I have an SO/DLL program that needs to sleep -> check some stuff -> sleep. Which is the better way to perform this operation: // A sleep loop while ( true ) { sleep( 1 ); // whatever time ...
-2
votes
0answers
23 views

Can you please help me pause Pandora when my device locks? [closed]

I need my device to pause Pandora when I lock or sleep ios 6. I found this but I really dont know what to do https://thinkandroid.wordpress.com/2010/01/24/handling-screen-off-and-screen-on-intents/
0
votes
0answers
29 views

Ruby Sleep Inside of Thread Waits for Mouse Movement Before Continuing

I have a program in which I want to periodically check the contents of a folder while still allowing the user to interact with the program itself. I was planning on splitting the periodic checking ...
1
vote
2answers
36 views

How to execute a function every n seconds?

I'm writing a monitor in PHP that's monitoring the uptime of a host. So every n seconds I like to ask the host for it's status. I could simply make a cronjob that executes every minute, but I could ...
-2
votes
2answers
45 views

Why is the thread status dead?

That is the question. I called a function using a thread, but when I return to main control, main becomes in sleep status within a few moments. Example (Look here is a line that calls a Win32API ...
0
votes
1answer
27 views

Is there any function like sleepWithTimeInterval() in Xcode?

When using Linux, there is two simple sleep function sleep() and usleep(). But as OS X provides a useful timer data type NSTimeInterval as double, is there any simple function like ...
0
votes
1answer
42 views

How to wake the android device from deep sleep using wake lock?

How can i wake the android device using a wakelock? Or is this not possible and must i use alarm manager? This does not work new Handler().postDelayed(new Runnable() { public void run() { ...
-1
votes
4answers
43 views

Sleep function in Javascript

I'm new to Javascript from Java, and I'm trying to implement a sleep(millis) function. Basically I need to make a request to an endpoint, and if it returns an error, wait a while and make the request ...
0
votes
2answers
33 views

IBM MQ - Wake up a MQ Channel

I was wondering if you can help me solve the following problem. After a while of no-messages being received by the Queue Manager, the Queue Manager goes to 'sleep' and unless you use IBM WebSphere ...
0
votes
0answers
29 views

Running man copies of a program with redirection input and sleep

I would like to do the follow while read input do echo "$input" sleep 1 done < input.txt | program $1 $2 But run many copies of the program in the background, I was thinking something with ...
4
votes
1answer
37 views

Enable button when picture finishes downloading.

Ok so I have a problem in Visual Basic, I got this code that downloads a picture. WC.DownloadFileAsync(New Uri("picturelinkhere"), "c:\myfile.jpg") After that I have a code that greys out the ...
1
vote
1answer
20 views

Is there a function or method to suspend the main thread for a specified amount of time?

Is there a wrapper function for Sleep / usleep in Qt that can be used in the main thread, or do I have to write my own wrapper? It's not a lot of code, but would be a shame to write my own if there ...
1
vote
1answer
23 views

Bash script with redirect input and sleep.

I have a file with input commands I would like to redirect into a program like so input.txt input1 input2 input3 input4 I would like to redirect this into the input of a program like so program ...
0
votes
4answers
47 views

php Mail sending double content [solved]

I am working on a massmail script which sends an e-mail to every e-mail id present in a particular database. But there is some issue. Like I have following database: id email link 1 ...
0
votes
0answers
15 views

Does networkActivityIndicatorVisible work in applicationDidBecomeActive?

I am trying to call the network indicator and then dismiss it after this code as you can see below but it does not show in the status bar. What am I doing wrong? I thought it was just that the network ...
0
votes
1answer
41 views

Selenium webdriver Java how to wait until a link is present

I have a link that I press and then it runs some JS and a new link is generated on the page which has the text "View report" How can I wait on the page until this link is present and clickable, or ...
1
vote
2answers
28 views

A php file using sleep() function cannot run simultaneously

I'm newbie in php. I'm now have a problem with sleep function, that is, I have a simple sleep.php file like this: <?php echo date('Y-m-d H:i:s'); sleep(5); ?> When I hit this file ...
3
votes
1answer
67 views

Python program possibly causing filesystem errors?

Overview: Hi. I have a python program that controls a motion sensor between the hours of 9-5. This program is running on a raspberry pi, stored on SD media with occidentals v2.1 Debian OS. The ...
0
votes
1answer
32 views

Difference between “implicit declaration of function” and the original version of the function

I use gcc4.8. And I wrote such code, using sleep. int main(int argc, char *argv[]) { /* I know it's worong to pass a floating number to sleep * this is only for testing. */ sleep(0.001); ...
0
votes
1answer
42 views

Hanging loop with sleep()

I'm trying to learn how to handle signals. In my program I have an array of pids of earlier created subprocesess. No I want to every copule seconds send a sigtstp signal to one of them. He just have ...
1
vote
2answers
80 views

Count time elapsed in c++, non blocking, without thread

I wonder if there is a way to calculate elapsed time in c++, without blocking execution and if possible avoiding thread. Situation: a bomb is created and need to explode 5 seconds later. Can we avoid ...
0
votes
0answers
112 views

How long before deep sleep activates in Android

When a device goes into standby mode, either when the screen goes off manually or the user presses the power button, the CPU continues to run for a while before it enters a deep sleep where most of ...
2
votes
3answers
52 views

Blocking method calls on an object for a period of time

I'm working on a multithreaded Java project where I would like to have objects that prevent their methods from being called from any thread for some period of time. Ideally, those method calls would ...
0
votes
0answers
22 views

Program craches after Sleep times out in a visual C++ DLL

I'm creating a C++ DLL in visual studio 2010. My DLL is using WINAPI to create some listener threads: static DWORD WINAPI addNewListener(LPVOID args) { while(true) { //check some ...
0
votes
0answers
22 views

How to prevent recreation of process when computer wakes up from sleep mode

I've made a program in C#. I start it with the .exe file in debug folder of the project and everything is good. The problem is that when the computer goes to sleep mode and then wakes up it opens a ...
0
votes
0answers
21 views

Programmatically change the sleep/suspend timeout on Windows and Linux

I am looking for a way to programmatically change the sleep/suspend timeout on Windows (XP) and Linux (Debian & Ubuntu) operating systems without having to reboot the system. I have spent a decent ...
0
votes
3answers
35 views

Why is the line following printf(), a call to sleep(), executed before anything is printed?

I thought I was doing something simple here, but C decided to go asynchronous on me. I'm not sure what's going on. Here's my code: #include <stdio.h> int main() { printf("start"); ...
0
votes
2answers
55 views

PHP echo before sleep function in for loop, not working

I want output echo in browser (every time) before sleep function execute. following code is not working set_time_limit(0); ob_implicit_flush(1); ob_start(); echo "Start<Br>"; ...
0
votes
1answer
35 views

Why is minimum Threading.Timer interval 1ms despite timeBeginPeriod(1)

The following snippet [DllImport("winmm.dll", EntryPoint = "timeBeginPeriod")] public static extern uint TimeBeginPeriod(uint uMilliseconds); static void Main(string[] args) { ...
1
vote
1answer
39 views

I am not able update UI after every call of sleep in android

My application is just like LUDO game. I am developing it in android. What i want is that after every roll dice my piece (player's playing piece) has to move in square boxes one by one means in one ...
0
votes
0answers
53 views

fread() in C fails to read beyond 131,072 bytes with sleep(1)

I am trying to read a file in 1000 byte chunks. I have a sleep in the reading loop. The file reads only till 131,072 bytes (which is 2^17 ). If I remove this sleep, it reads till actual end of file ...
1
vote
1answer
86 views

Android Java Service and Timer/Thread Sleep

Basically, what I need to code is simple, but as I'm a beginner, I am still confused about Service, IntentService, creating a new Thread separate from the main Activity/UI thread, etc. I'll explain ...
0
votes
0answers
23 views

Will task sleep during the memory access?

I suppose this should be a programming question. I just want to make sure, in the current Linux scheduler, will the task sleep(or dequeued) when it's waiting for the memory IO? In other words, will ...
0
votes
1answer
95 views

Is there a way to force C#.NET to finish executing a line of code before sleeping?

What I'd like my program to do is something along these lines: for (int i = 0; i < btns.Length; i++) { //Flash red btns[i].BackColor = Color.Red; System.Threading.Thread.Sleep(500); ...
0
votes
1answer
131 views

Sleep in Linux Kernel Space

Can I use the msleep() function to sleep for a specified amount of time in kernel space? If so, which header files do I need to include? #include <linux/time.h> doesn't seem to be the right one. ...
1
vote
1answer
40 views

PHP line return use. Need to use /r to display text in the same place in combination with a textbox

I am trying to recieve input from a textbox. Then on the same page it writes words and copies over them on the same line with the use of \r. I can successfully copy text on the same line by itself ...
1
vote
1answer
86 views

getting an error while using time sleep method in python

There is a weblogic python script that takes a thread dump and sleeps for 10 or 20 seconds then takes another one after time.sleep(30), thread dumps are working fine, but the sleep method ...
0
votes
1answer
43 views

How do I sleep a dedicated python thread for task scheduling?

I'm writing a library that will connect to sockets and manage them, process its data, and do stuff based on that. My problem lays on sending b"\r\n\x00" to the socket every 20 seconds. I thought that ...
1
vote
1answer
56 views

Weird behavior in Thread.sleep()

I have noticed something very odd (which eventually crashes my game) with Thread.sleep() and I cannot figure out what the problem might be. I have run the following method for two hours straight and ...
0
votes
1answer
34 views

JQuery load function for group of links one by one?

i have an ul which contains many links. when using jQuery to load these links it renders them all at same time. How can i load them one by one hqving qtt3mpted the following? js: ...
0
votes
0answers
44 views

php sleep or usleep freezes out entire server

I have a big table in a data base which is updated almost every second. I want to query this table every 5 second to get the latest entries (live streaming). I can't query data base for each visitor ...

1 2 3 4 5 20