2
votes
4answers
214 views
Delphi thread that waits for data, processes it, then resumes waiting
I need to create a thread in Delphi with the following characteristics:
Waits until the main thread adds data to a shared queue.
Processes all the data in the queue, returning th …
1
vote
2answers
350 views
Bash date/time arithmetic
I have a little Bash script which suspends the computer after a given number of minutes. However, I'd like to extend it to tell me what the time will be when it will be suspended, …
0
votes
1answer
48 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 …
2
votes
4answers
185 views
Resuming C# threads
Possible duplicate question: http://stackoverflow.com/questions/142826/is-there-a-way-to-indefinitely-pause-a-thread
In my code i do the below
Thread mainThread
//...
mainThre …
0
votes
1answer
28 views
Request suspend on Vista but allow other applications to cancel
My application uses the Win32 SetSuspendState() API to trigger system suspend or hibernation when it has finished doing a lengthy task.
The API accepts a parameter "ForceCritical" …
1
vote
2answers
308 views
Suspended status in SQL Activity Monitor
What would cause a query being done in Management Studio to get suspended?
I perform a simple select top 60000 from a table (which has 11 million rows) and the results come back …
2
votes
2answers
116 views
JScript Wait function
I have a function written in JScript (Not javascript) I need to suspend until a certain global variable becomes true.
The global variable is changed to true when another function i …
1
vote
2answers
104 views
Suspending the execution of a remote process (C, Windows)
I can suspend a thread of another process by using SuspendThread(). Is there any way to also suspend the execution of that process altogether?
If yes, please post code.
Thanks.
P …
1
vote
8answers
205 views
Temporarily suspend the PC operating system.
How does one programmatically cause the OS to switch off, go away and stop doing anything at all so that a program may have complete control of a PC system?
I'm interested in doin …
1
vote
2answers
173 views
OS X Process control
I'm writing a process-controller kernel extension for leopard. The application enables me to suspend process's with SIGSUS and to make the computer sleep. My problem is when an app …
0
votes
5answers
1k views
How can I detect suspend on Windows Mobile?
We are seeing some occasional data loss with our application on Windows Mobile, and we suspect that some buffered data is not being flushed to disk when the device is suspending. W …
0
votes
2answers
1k views
How can I run code on Windows Mobile while being suspended?
I'd like to run some C++ code while the Windows Mobile PocketPC is (or seems) being suspended. An example what I mean is the HTC Home plugin that shows (among others) a tab where t …
0
votes
3answers
387 views
How to Suspend a button event in C#?
In my application I want to suspend a button event for some time so that I can fire another event after which the first button event will resume. In c# I am not getting how do I pe …
0
votes
4answers
300 views
WASAPI prevents Windows automatic suspend?
First time poster, be gentle ;-)
I'm writing an audio app (in C++) which runs as a Windows service, uses WASAPI to take samples from the line in jack, and does some processing on …
2
votes
5answers
808 views
WinForms: Best way to suspend control events?
This seems like a very simple and a very common problem. The simplest example I can think of is this. The form has 5 checkboxes with a "check all/check none" checkbox above them. W …
