Tag Info

Hot answers tagged

13

With Linux, you could use kexec jump to transfer control completely to another kernel (ie, your program). Of course, with great power comes great responsibility - it is entirely up to you to service interrupts, and avoid corrupting the old kernel's memory. You'll end up having to write your own OS kernel to do this. Also, the transfer of control takes quite ...


10

OmniThreadLibrary can definitely help you here. Test 5 from the OTL distribution should help you started. In this demo, "Start" button creates the thread and sets some parameters and timer (which you can remove in your code if not needed). "Change message" sends a message to the thread and this message is processed in thread's OMChangeMessage method. ...


7

select * from sys.dm_exec_requests r join sys.dm_os_tasks t on r.session_id = t.session_id where r.session_id = <spid of create index>; This will show not only the status of the request, but also all the tasks spawned by the request. An online CREATE INDEX may spawn parallel threads and will suspend itself until they're finish.


6

the problem is here: synchronized(p1) { p2.cont = true; p2.notify(); } You are doing p2.notify() when you haven't got a lock on p2 (you must hold the monitor to call notify on it). Change synchronized(p1) to synchronized(p2). Additionally, you need to reverse the other synchronized clause as well which is also faulty. So, as an example: ...


6

The easy solution is to fix your logic and don't call Resume() when you are not Suspended(). But the Resume/Suspend API is indeed deprecated, take a look at, for example: 1) Monitor, Wait() and Pulse() 2) AutoResetEvent or ManualResetEvent, Set() and WaitOne() The static class Monitor is a little easier to use and integrates with lock() {} , but a ...


5

The wait type "Async_Network_IO" means that its waiting for the client to retrieve the result set as SQL Server's network buffer is full. Why your client isn't picking up the data in a timely manner I can't say. The other case it can happen is with linked servers when SQL Server is querying a remote table, in this case SQL Server is waiting for the remote ...


5

Unfortuantely there's no mechanism to do what you want - opening an audio stream prevents power state transitions as does opening a file up over the network and any one of a number of other things. This is a function of the audio driver (portcls.sys) and not WASAPI and is not a new behavior for Vista - I believe that XP and Win2K had similar behaviors ...


5

Indeed, suspending or stopping threads at random points is an unsafe idea, which is why these methods are deprecated. The best you can do in my opinion is to have fixed points of pausing in your thread's run method and stopping there using wait: class ThreadTask implements Runnable { private volatile boolean paused; private final Object signal = ...


4

I've come across this before and usually seen people do this: /*SNIP*/ private bool isMassUpdate; public void Check1_Check(object sender, EventArgs e) { if(!isMassUpdate) { do some stuff } } /*SNIP*/ You can also detach and reattach the event handlers, however, I'm told this can be a source of memory leaks. EDIT: Info on memory leaks ...


4

Did you do a clean build, delete the app from both the simulator and the device, and re-install? That's the only key that affects it. Also, make sure you are building with base SDK set to iOS 4.0. UIApplicationExitsOnSuspend (Boolean - iOS) specifies that the application should be terminated rather than moved to the background when it is quit. ...


4

I'd recommend the following implementation of TthrdQueue: type TthrdQueue = class(TThread) private FEvent: THandle; protected procedure Execute; override; public procedure MyResume; end; implementation procedure TthrdQueue.MyResume; begin SetEvent(FEvent); end; procedure TthrdQueue.Execute; begin FEvent:= CreateEvent(nil, ...


4

I strongly advise to not put this kind of timing logic inside your orchestrations. But if you need it, you'll want to use the Delay shape, which effectively pauses the processing for a specified duration. By contrast, the Suspend shape is used to administratively suspend the orchestration in the message box, so that it could potentially be resumed at a ...


4

You can protect the page containing address of interest with VirtualProtect and PAGE_GUARD or other options and have an exception hit on address write. Such exception can be handled by unhandled exception filter (it depends, the application might be handling it itself), or by out of process debugger application, such as well known debugger or custom ...


4

Starting a thread without having a reliable way to terminate it is a bad practice. Suspend/Abort are one of those unreliable ways to terminate a thread because you may terminate a thread in a state that corrupts your entire program and you have no way to avoid it from happening. You can see how to kill a thread safely here: Killing a thread (C#) If the ...


3

What I do in these cases instead of having a boolean value that suspends events, I use a counter. When the count is > 0, then suspend events, when the count = 0, then resume events. This helps with the problem if I have multiple things that could request a suspension of events. The other useful thing is if I need to suspend events in a block, I create a ...


3

It doesn't mean anything special, a suspended transaction is just a transaction that is temporarily not used for inserts, updates, commit or rollback, because a new transaction should be created due to the specified propagation properties, and only one transaction can be active at the same time. Basically there are two transaction models: the nested and ...


3

As far as I know you are correct that you can't detect when a device goes into suspend mode, only when it comes out using the CeRunAppAtEvent API. A better approach to the problem is to try to prevent the device from suspending around critical parts of your code. There are kind-of two ways to do this depending on how your application runs. If it runs as ...


3

I found sourcecode on the xda-developers forum that explains what to do, and it works as thought. The main points are: Set the device to send a notification when going into "unattended" mode. This is done with PowerPolicyNotify(PPN_UNATTENDEDMODE, TRUE) For every device that you need during unattended mode, call SetPowerRequirement(L"gpd0:", D0, ...


3

The best way to avoid being labeled as a spammer is to not send spam emails. Emailing random people and asking them to visit your website and fill out a form is spam, plain and simple. I would suggest finding a less evil way of getting hits on a website like a Google Adwords campaign. Also, for your convenience, I have included the first link in my google ...


3

Instead of suspending the thread, make it sleep. Make it block on some waitable handle, and when the handle becomes signalled, the thread will wake up. You have many options for waitable objects, including events, mutex objects, semaphores, message queues, pipes. Suppose you choose to use an event. Make it an auto-reset event. When the queue is empty, call ...


3

There is a library to allow implementation of producer-consumer queue in Delphi using condition variables. This scenario is actually the example discussed. The classic example of condition variables is the producer/consumer problem. One or more threads called producers produce items and add them to a queue. Consumers (other threads) consume ...


3

"Suspending" the while loop is not the right approach. Instead, your spell checking algorithm should be parameterized so that you can specify where to begin (in the same way that indexOf offers an overload that allows you to specify where the search should start). Then, where you currently have the comment suspend loop until "next" button is pressed, you ...


3

Add an event filter to check for the activate and deactivate events. From the QEvent documentation: QEvent::ApplicationActivate 121 The application has been made available to the user. QEvent::ApplicationDeactivate 122 The application has been suspended, and is unavailable to the user. MainWindow::MainWindow(QWidget *parent) : ...


3

There is no alternative with the same functionality, AFAIK. I am not sure if the problems with an OS Suspend() could be worked around within the language/libraries, but no attempt has been made to do so, so maybe it's too difficult or even sensibly impossible. Until such an alernative exists, you are reduced to polling for a suspend flag and then waiting ...


3

The apps that are using the most memory are terminated first in the background. So the likely cause is that your app is consuming more memory than you think it is. I'd start with ensuring that your memory is being managed correctly. Apple - App States and Multitasking


3

Ah, do you mean the App Pool as stopped because of the timeout configuration? This is a different state to the web site remember? Well, certainly, you could change the settings so it doesn't recycle, but you could also try using code like this; First, add a reference to \Windows\System32\inetsrv\Microsoft.Web.Administration.dll, then; using System; using ...


3

In Bash, when you place a job into the background (using CTRL+Z or &) it does not wait for the job to finish, and gives an exit code of zero (success). That much you have observed, and it is documented in the man pages. The behaviour of logical "AND", &&, is that it tests from left-to right. Each part must be successful, so if the first is ...


3

Maybe I am overlooking something, but a "function that stops [...] and restarts after a couple of seconds" sounds like sleep() to me. Let the OS do the timing instead of re-inventing the wheel. Or is there any reason you can't post some message to the main thread? In this simple use case maybe even via a single mutex would be enough. Set the mutex from ...


2

If you want to fire the second event and wait for it to finish before continuing, then why not just fire it synchronously from within the first event handler? That would be much simpler. EDIT: If you want one button to trigger the code that's in another button's event handler, I would suggest instead that you move it out into a separate function, and just ...


2

Many thanks to Larry for confirming this behaviour is by design and not me doing something silly. To work around this issue I used the Win32 CallNtPowerInformation() API to retrieve the system idle timer: SYSTEM_POWER_INFORMATION spi = {0}; NTSTATUS status = CallNtPowerInformation(SystemPowerInformation, NULL, 0, ...



Only top voted, non community-wiki answers of a minimum length are eligible