Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
200 views

How to suspend a blocking thread without obsolete Thread.Suspend?

I have a thread that waits on TcpListener.AcceptTcpClient(), which blocks, which I want to suspend at times. I've read about Monitor.Wait(...), but I only have experience working with mutexes and if ...
5
votes
5answers
2k 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. When a user selects ...
5
votes
5answers
4k views

Run script on suspend/resume in Mac OS X

Is there any way to automatically run a script on suspend/resume (i.e. when I close the lid, or after opening it) under Mac OS X 10.4?
4
votes
3answers
155 views

How to suspend and resume an application on windows?

Is there any way to suspend an application execution, store its process image to a file, and restore it later (keeping the application as it was at the moment of suspension)? What I want to do is ...
4
votes
3answers
181 views

Java threading problem

I'm using multiple threads in my application. Basically I have a combo box and upon selecting Inbox, p1 resumes and p2 is suspended and upon selecting Send, p2 starts and p1 stops. Below is the code ...
4
votes
3answers
211 views

How to save a program's progress, and resume later?

You may know a lot of programs, e.g some password cracking programs, we can stop them while they're running, and when we run the program again (with or without entering a same input), they will be ...
4
votes
4answers
2k 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 the results to main ...
4
votes
3answers
615 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. PS: Since you will ...
3
votes
2answers
190 views

Rooted Android: Suspend and warn user when any App accesses Contacts List, Microphone or Camera?

I have Users with rooted Android 2.2+ smartphone devices. Whenever any on-device App accesses the device's Contacts List, Microphone or Camera resource, I want to Suspend that App, pop up a warning ...
3
votes
4answers
172 views

Function which takes a pthread as input and suspends it

I'm trying to port the real time Thread_Metric from ExpressLogic in POSIX, in order to benchmark PREEMPT_RT patches for Linux, Xenomai and RTAI for my thesis. They provide a C source file with the ...
3
votes
3answers
1k views

Self Suspending a thread in Delphi when it's not needed and safely resuming

This question involves Delphi and XE specifically deprecating Suspend and Resume. I have read other posts and I have not found a similar usage so far, so I’m going to go ahead and ask for a ...
3
votes
3answers
1k views

Windows SuspendThread doesn't? (GetThreadContext fails)

We have an Windows32 application in which one thread can stop another to inspect its state [PC, etc.], by doing SuspendThread/GetThreadContext/ResumeThread. if ...
3
votes
2answers
1k views

C# How to pause/suspend a thread then continue it?

I am making an application in C# which uses a winform as the GUI and a separate thread which is running in the background automatically changing things. Ex: public void run() { while(true) ...
3
votes
2answers
5k 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 within a sec or ...
3
votes
2answers
773 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 is called after an ...
2
votes
0answers
31 views

wxWidgets wxWinCE suspend-resume crash (VC++)

I have an issue with a few Windows CE 5.0 devices which are crashing virtually as soon as they resume from standby (suspend). I have condensed the issue down to about 15 lines of C++ to simply get ...
2
votes
2answers
103 views

Windows: Atomically suspend an entire process?

Using Win32 API it is only possible to suspend a single thread using SuspendThread() but not a complete process in one call. Iterating over a process threads and suspending them one at a time is not a ...
2
votes
1answer
96 views

Windows CE: Wakeup device when USB power on

I've got a navigation device (Wayteq x850) that's running Windows CE 5.0. It serves as USB client to another device. Is there a (simple) way to wake up the USB client from Suspend when the USB ...
2
votes
1answer
67 views

What's the last instruction to cause the machine go to S3 sleep?

From ACPI Spec 4.0 page 299, there is some sample code to show how to put the machine into S3 sleep. I just wondering what are the last instructions to cause the hardware to sleep? What happens after ...
2
votes
1answer
336 views

HTML5 Video - Suspend Loading / Partial Load

Is there a way to preload a portion of a video, but not the entire thing? I noticed that there is a "suspend" event that indicates the video is expectedly not downloading until further instruction, ...
2
votes
1answer
879 views

Operating Systems: Process State Transition Diagram

I have: A I/O devices B Processors C Processes My main memory is large enough to hold C processes. A is smaller than B and B smaller than C What is the maximum number of processes that can be in ...
2
votes
2answers
106 views

Can I temporarily suspend SharePoint Server + IIS + SQL Server?

Is there a way to temporarily suspend / pause Sharepoint Server 2010, IIS and SQL Server services without killing them in Task Manager? I am not running VM or Hyper-V, so most of my resources are ...
2
votes
6answers
4k views

UIApplicationExitsOnSuspend anything else I'm missing?

So I know this has been beaten to death but I still can't figure out a solution. I have my UIApplicationExitsOnSuspend set to <true/> in the Info.plist and still both in the simulator as well ...
2
votes
2answers
4k views

SQL Server - Why would my SPID be “SUSPENDED” but not blocked, while creating an index?

I have a SQL 2005 x64 server, and when I attempt to issue some queries against it (for example, when I try to create an index), my SPID goes to "sleeping" immediately, and seems to wait there ...
2
votes
1answer
193 views

How does transaction suspension work in MySQL?

In the Spring Framework manual they state that for a PROPAGATION_REQUIRES_NEW the current transaction will be suspended. What does that "suspended transaction"? The timer for the timeout stops ...
2
votes
4answers
522 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 //... mainThread.Resume(); void ...
1
vote
1answer
15 views

Suspend all desktop activity like Snipping Tool

I'm wondering how the snipping tool software on Windows is able to suspend the desktop activity. By this I mean that if I'm playing a game with moving objects or a video on youtube, they stop moving. ...
1
vote
2answers
42 views

Define FK where target table does not exists

When I create table that has definition of FK's directly in CREATE command and target table does not exists yet, results in error. Can checking, if target table exists, be somehow suspended? my DBMS ...
1
vote
4answers
102 views

Suspend / Hibernate pc with python

I'd like to write a short python script that puts my computer to sleep. I'Ve already searched the API but the only result on suspend has to do with delayed execution. What function does the trick ?
1
vote
1answer
67 views

SystemEvents and resuming from sleep

Imagine I was creating an application that measured how long a certain user is logged in to a computer (the actual application I'm writing is different, but that doesn't matter). I need to track when ...
1
vote
1answer
176 views

“Suspend” a workflow in .NET 4?

I've to do a small test application, I want to suspend the application. I saw there is a "SuspendActivity" but I can't find it in .Net 4.0, so how I'm supposed to pause my workflow and resume it from ...
1
vote
1answer
24 views

framework for suspending/hibernating whole applications

The highlevel problem is: suspending/hibernating entire user level applications is hard due to difficulties in restoring state related to opened files, sockets, etc. Now, are there any environments ...
1
vote
0answers
184 views

How to be notified about entering suspend mode?

I'd like my application to be notified when system is about to suspend or sleep (before). No matter to acquire a wake lock: i dont want to inhibit the procedure but only to be notified about it. Thank ...
1
vote
1answer
413 views

how to find if the process is suspended or not?

i am using this code for suspend process.i found it here http://www.codeproject.com/KB/threads/pausep.aspx BOOL SuspendResumeThreadList(DWORD dwOwnerPID, bool bResumeThread) { HANDLE ...
1
vote
2answers
352 views

how to publish an app that will work on iOS 3.2 as well as use the app-suspending-and-going-to-background feature on iPhone 4

My app does not use any of iOS 4 APIs but all I want it to do on iOS4 is that it should go to the suspended state after the user presses the home key. When I install the app to iPhone 4 using device ...
1
vote
8answers
308 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 doing this from both an ...
1
vote
2answers
434 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 application that uses ...
1
vote
2answers
3k 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, so I can get a ...
1
vote
5answers
3k 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. We would like to ...
1
vote
2answers
5k 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 the HTC Audio Manager ...
0
votes
1answer
81 views

extjs4 - bulk insert in store cause a performance issue

Copying the rows from the grid and inserting into same grid in begining (insert at position 0). It was causing performance issue, as soon as hits more than 10 rows. I started using ...
0
votes
3answers
53 views

How to make Java app detect that the Linux PC has resumed from suspended state (sleep mode)?

In a Java Swing desktop application running on Linux (e.g., Ubuntu), how can the application be notified that the PC has just resumed from the sleep/suspended/hibernated state? Screen blanking is ...
0
votes
0answers
62 views

NativeActivity does not finish

I call a NativeActivity from a JavaActivity. The entry point of my NativeActivity is android_main(struct android_app* state) At the end of this, I call ANativeActivity_finish However my ...
0
votes
2answers
92 views

iOS NSNotification - how to safely ignore when coming out of suspended

Sometimes, when the app I'm working on comes out of suspended mode, I need to make sure it does not respond to the notifications iOS has saved for it while the app was suspended. Where's the right ...
0
votes
1answer
167 views

Qt Application Suspending

How do I detect if my application has been suspended (when someone changes applications) and react by deactivating my timer and then re-activating it when my application becomes un-suspended (when ...
0
votes
2answers
127 views

Does a Python threading.Condition.wait() suspend execution immedeatly?

Like title says, if I call wait() on a python condition variable, does the calling thread suspend execution and yield or does it keep blocking until the next context switch? Thanks for your time,
0
votes
2answers
244 views

How to change the battery idle timeout programmatically in .Net on Windows Mobile 6

We are using C# .Net Compact Edition 3.5 with Windows Mobile 6.1 and not very familiar with C++ or Windows API calls. We need to programmatically change the battery idle/suspect time from whatever ...
0
votes
1answer
95 views

When and how does Linux to save VGA memroy to RAM? Is it in pm-suspend script? or in kernel after echo mem > /sys/power/state

Does anyone know when Linux save VGA memory to RAM? Is it in pm-suspend script before echo mem to /sys/power/state? Is it in kernel after echo -n "mem" > /sys/power/state? or both? I have looked at ...
0
votes
0answers
72 views

Running code in another Windows thread without blocking

I'm trying to find a way to run a function on the private data of another Windows thread in such a way that the calling thread may not be blocked for indefinitely and the target thread should not be ...
0
votes
1answer
280 views

Suspending and resuming threads in c++

My application has to suspend and resume a different process every few *microsec*s. It works fine only sometimes it feels like it suspends the process for non-uniforms times. I use the win API: ...

1 2