Tagged Questions
The terminate tag has no wiki summary.
14
votes
15answers
20k views
How to stop C++ console application from exiting immediately?
Lately, I've been trying to learn C++ from this website. Unfortunately whenever I try to run one of the code samples, I see that program open for about a half second and then immediately close. Is ...
8
votes
5answers
664 views
Thread does not abort on application closing
I have an application which does some background task (network listening & reading) in separate Thread. It seems however that the Thread is not being Terminated/Aborted when I close the ...
8
votes
4answers
3k views
C#/.NET: Process.HasExited returns true even though process is running?
I have been observing that Process.HasExited sometimes returns true even though the process is still running.
My code below starts a process with name "testprogram.exe" and then waits for it to exit. ...
8
votes
2answers
128 views
How to debug iPhone app errors that occur before the first line
I have a fairly simple app. It compiles fine. Unfortunately, when I Build and Go, it fails before even the first line of code, thus making it impossible for me to even debug it.
Where do I start? ...
8
votes
3answers
1k views
When is a C++ terminate handler the Right Thing(TM)?
The C++ standard provides the std::set_terminate function which lets you specify what function std::terminate should actually call. std::terminate should only get called in dire circumstances, and ...
7
votes
2answers
185 views
Is there a Delphi event that is guaranteed to be called when an app terminates but before any forms are destroyed?
I am using Delphi 6 Pro. I need an event that will fire when my application is definitely shutting down but before any Forms are destroyed. I thought about trapping WM_QUIT messages in the main form ...
6
votes
5answers
349 views
Why does iOS terminate my app even when I free lots of memory in response to memory warnings?
I can't figure out why iOS is terminating my app (iPad, iOS 4) due to memory usage even after I free a ton of memory in response to low-memory warnings. For example, here's a typical termination ...
6
votes
3answers
240 views
Flash Builder 4.5 debugger terminates | Safari
So it seems all the major browser vendors are sandboxing the flash plugin, and terminating it after a certain amount of inactivity. This is problematic for developers who connect the Flash Builder ...
6
votes
2answers
274 views
A kinder way than TerminateProcess?
I have a backup app that will close user-defined running programs before the backup so that open data files can be closed and flushed before the backup. After the backup is complete it restarts the ...
5
votes
4answers
122 views
Stop execution without skipping destructors
Is it possible to terminate software execution without skipping calls to destructors? For instance, in the code below, the destructor for test will never be called because of the exit(1) statement.
...
5
votes
3answers
574 views
Java: Why not to start a thread in the constructor? How to terminate?
I am learning how to use threads in Java. And I wrote a class that implements Runnable to run concurrently to another thread. The main thread handles listening to the serial port where as the second ...
5
votes
1answer
251 views
SBT stop run without exiting
How do you terminate a run in SBT without exiting?
I'm trying CTRL+C but it exits SBT. Is there a way to only exit the running application while keeping SBT open?
5
votes
6answers
437 views
Terminate a thread after an interval if not returned
I have a thread which grabs some data from network or serial port. The thread must terminate (or return false) if no data is received within 5 seconds.
In other words, if running the thread is taking ...
5
votes
3answers
710 views
Terminate subprocess in Windows, access denied
-
import time
import subprocess
from os.path import expanduser
chrome_path = expanduser('~\Local Settings\Application Data\Google\Chrome\Application\chrome.exe')
proc = ...
5
votes
3answers
2k views
Socket listen doesn't unbind in C++ under linux
I have a socket that listens on some port.
I send the SIGSTOP signal to the thread that waits on the port(using accept) and terminate it. then I close the fd of the socket that I waited on. But for ...
4
votes
2answers
56 views
How do I detect if a custom terminate() handler is installed?
My code is compiled as a Windows DLL with Visual C++. I want to log rare cases when terminate() is being called, so I set my terminate() handler in the library initialization function and the latter ...
4
votes
3answers
66 views
What's a good terminator byte for UTF-8 data?
I have a need to manipulate UTF-8 byte arrays in a low-level environment. The strings will be prefix-similar and kept in a container that exploits this (a trie.) To preserve this prefix-similarity ...
4
votes
1answer
298 views
Why do I get “The handle is invalid” when waiting for a thread I've told to terminate?
How can I properly stop a thread when an application is closing?
I do this:
procedure TForm1.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
if not Thread1.Finished
then
begin
...
4
votes
1answer
1k views
Python Process won't call atexit
I'm trying to use atexit in a Process, but unfortunately it doesn't seem to work. Here's some example code:
import time
import atexit
import logging
import multiprocessing
...
4
votes
1answer
196 views
Haskell function does not terminate
I´ve written a function in Haskell that takes three points in the plane,
and checks if they´re on a straight line, or make a right or left turn.
Here´s the code:
detDirection :: Point -> Point ...
4
votes
2answers
1k views
Terminating an application programmatically using a file path in vb.net
I want to terminate an application using the full file path via vb.net, yet I could not find it under Process. I was hoping for an easy Process.Stop(filepath), like with Process.Start, but no such ...
4
votes
6answers
652 views
Why does .exe refuse to stop?
I've "inherited" a legacy C#/C++ program that I have to debug. The current problem is that the .exe won't stop after I close the program, i.e. it still shows up in Task Manager.
This is a problem, ...
3
votes
1answer
121 views
Delphi 2006 - What's the best way to gracefully kill a thread and still have the OnTerminate handler fire?
I have a thread that sometimes freezes (I suspect) due to a DLL call that never returns. In the general case, where you have calls to blocking routines like Indy, is there a way of recovering from ...
3
votes
5answers
93 views
Throwing during unwinding — why does this example work?
Consider this:
void thrower () {
throw "123";
}
struct Catcher {
~ Catcher () {
try {thrower ();}
catch (...) {}
}
};
int main () {
try {
Catcher c;
...
3
votes
1answer
138 views
C program that can recieve shutdown/terminate requests from linux/upstart/ubuntu
I have a coded a program in C for linux. At the moment I am using ubuntu upstart to run as a background service.
I want to be able to have the program gracefully shutdown when commanded instead of ...
3
votes
2answers
104 views
How to terminate ASIHTTP connection in iphone?
I am having an issue with ASIHTTPRequest authentication. The steps are in the following order,
User entering wrong username and password -- > No data comes from backend and request failed delegate ...
3
votes
4answers
567 views
terminate a thread in delphi
How can I terminate a thread in a proper way?
When the thread finishes, it is still in memory. I'm using Delphi 2010 (Update 5).
3
votes
2answers
173 views
Python script opening a bash prompt terminating the script
I want to write a chroot wrapper in python. The script will be copying some files, setting up some other stuff and then executing chroot and should land me in a chroot shell.
The tricky part is that ...
3
votes
7answers
3k views
How terminate child processes when parent process terminated in C#
Task: Auto kill all child processes if parent process terminate. Parent procees can be terminated not only in correct way, but also by killing in ProcessExplorer, for example.
How can I do it?
...
3
votes
2answers
410 views
How can I forcibly close a TcpListener
I have a service which communicates through tcpListener.
Problem is when the user restarts the service - an "Address already in use" exception is thrown, and the service cannot be started for a couple ...
3
votes
2answers
157 views
Recursion causes exit to exit all JFrames (terminates app)
I have made an application that gives the user the option to open up a new spawn of the application entirely. When the user does so and closes the application the entire application terminates; not ...
3
votes
3answers
1k views
Terminating Another App Running - Cocoa
How can I terminate another app that is running in cooca. Let's say I have iTunes running, and I type in quit in my app, it would quit itunes. "iTunes" is just an example, it could be anything the ...
3
votes
5answers
5k views
Terminate a process tree (C for Windows)
This has been asked before but I can't find a definitive answer, in code.
I open a process, ProcessA (with PID 1234). This process opens a child process, ProcessAB (PID 5678).
After I'm done I ...
3
votes
2answers
2k views
How can I end a Lua thread cleanly?
My situation is that I'm using the Lua (C) API to execute a script held in a string.
I would like the user to be able to terminate the execution of the script (this is essential if the script contains ...
2
votes
1answer
84 views
ruby timeouts and system commands
I have a ruby timeout that calls a system (bash) command like this..
Timeout::timeout(10) {
`my_bash_command -c12 -o text.txt`
}
but I think that even if the ruby thread is interrupted, the ...
2
votes
1answer
66 views
Android: Terminating a thread with a socket connection
I have a thread that is used to maintain a connection to the server. If the user signs out of the service on the app (but doesn't exit the app), I need a way to terminate the thread and make sure it ...
2
votes
3answers
107 views
What can happen when I forcly terminate thread at Winsock connect function?
What can happen when I use TerminateThread while Winsock connect function is in progress?
I need to immediately shutdown the thread which is currently connecting to the socket but I don't know what ...
2
votes
1answer
85 views
Dialog with Disposed parent makes JVM hang?
Today I noticed using a window that's been disposed as a parent for a message box will keep the JVM from terminating. (And by 'noticed' I mean I stumbled around for 1 or 2 hours trying to figure out ...
2
votes
1answer
107 views
Stopping Excel Macro executution when pressing Esc won't work
I'm running excel 2007 on XP.
Is there a way to stop a macro from running during its execution other than pressing escape? Usually if I think I created an infinate loop or otherwise messed something ...
2
votes
2answers
75 views
Create a terminate-button like eclipse
Currently I program a GUI application with wxPython.
Now I want create a STOP-Button which will stop the current python command/request/task.
I already created a button:
def StopButton(self, event):
...
2
votes
1answer
49 views
how can i receive a signal when a Popen terminates?
in python, i have a spawned shell process which i might stop manually , or it might terminate itself when it feels like it. can i receive a notification that it has completed, without polling it all ...
2
votes
2answers
259 views
TerminateProcess() doens't close the application
I am trying to use the TerminateProcess to terminate an app launched by ShellExecuteEX like this:
SHELLEXECUTEINFO ExecuteInfo;
ExecuteInfo.fMask = SEE_MASK_FLAG_NO_UI; /* Odd but true */
...
2
votes
4answers
142 views
Java Thread terminate reference
Why is it not possible to terminate a thread by setting it's reference to null and letting the garbage collector removing it? It's an object like any other, isn't it?
example:
Thread t = new ...
2
votes
1answer
238 views
Terminate A Thread, Running Code Before Exit
I want to be able to terminate a thread on the click of a button, e.g., stop the process half-way through if the user wants. Apparently, you can do this by mointoring for Terminated variable in the ...
2
votes
3answers
206 views
Can't interrupt/terminate Ruby script with Ctrl+C on Windows
My script opens TCP connection and reads data from server. If server does not respond I try to interrupt the script with Ctrl+C, but it does not work. The only way to terminate the script is to kill ...
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
2k views
How to terminate a running process in matlab?
I have a pretty simple question: how can I terminate a running script in matlab using code, similar to using CTRL + C?
I want the program to stop running if a user enters incorrect digits.
2
votes
1answer
63 views
Windows: how can I run something in a new command window in such a way that the window closes when the process finishes or crashes?
I have a script that is supposed to sit there, happily running in a command window, spewing out data... but I want the window to close automatically when the script finishes or crashes. The script is ...
2
votes
6answers
2k views
C# Process Killing
i need to write a program in c# that would just start, kill one process\exe that it is supposed to kill and enditslef.
The process i need to kill is another C# application so it is a local user ...
2
votes
3answers
957 views
CMD.exe command in java not terminating
I'm trying to use cmd.exe to search for a file in a specific directory and then display the path in a java program and write it to a file. The problem is that the process never terminates.
Here is ...