Tagged Questions
The termination tag has no wiki summary.
32
votes
5answers
32k views
Terminating a Python script
I am aware of the die() command in PHP which stops a script early, how can I do this in Python?
11
votes
6answers
945 views
Guaranteed file deletion upon program termination (C/C++)
Win32's CreateFile has FILE_FLAG_DELETE_ON_CLOSE, but I'm on Linux.
I want to open a temporary file which will always be deleted upon program termination. I could understand that in the case of a ...
9
votes
6answers
3k views
Why shouldn't I use Process.GetCurrentProcess().Kill() to exit my WinForm application?
Right now, when the user want to exit my application, I do the few things I have to (ie disconnecting from the server, saving the user data...) and then I do the following :
Exit all my mainloops ...
7
votes
3answers
267 views
How do I implement graceful termination in Java?
Say for instance I have my application running in a Linux terminal and I press "CTRL+C" on my keyboard to kill the process it will terminate the Java program.
Is there any way to catch this "request" ...
6
votes
2answers
134 views
PHP script doesn't exit on browser exit
Why this dummy script keeps running event if the client closes the browser (so the connection to the server)?
while ( true )
{
sleep( 1 );
file_put_contents( '/tmp/foo' , "I'm alive ...
5
votes
1answer
63 views
Bash: How do I make sub-processes of a script be terminated, when the script is terminated?
The question applies to a script such as the following:
Script
#!/bin/sh
SRC="/tmp/my-server-logs"
echo "STARTING GREP JOBS..."
for f in `find ${SRC} -name '*log*2011*' | sort --reverse`
do
(
...
5
votes
9answers
177 views
Is there anything wrong with using an empty for loop?
It was a little while since I last programmed and I have seem to forgotten if it's acceptable to use an empty "for loop" for creating an infinite loop?
for(;;)
Currently I use this method in a ...
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
4answers
260 views
How can I close my software in a safe way?
Up to now I used my application as a stand alone product. So, when user pressed "Stop" button I called System.exit(0); and it was fine.
Now my application will be called (in a programmatic way) from ...
4
votes
2answers
222 views
The Reason of Service Termination
I use a service application I created in Delphi. My problem is that it is sometimes terminated by the operating system and I don't know why this happens.
When I go the the system events, I can find a ...
4
votes
2answers
664 views
How can I add scala actors to an existing program without interfering with the normal termination behavior?
This program, after executing main(), does not exit.
object Main
{
def main(args: Array[String]) {
... // existing code
f()
... // existing code
}
def f() {
...
4
votes
8answers
3k views
detect program termination (C, Windows)
I have a program that has to perform certain tasks before it finishes. The problem is that sometimes the program crashes with an exception (like database cannot be reached, etc).
Now, is there any way ...
3
votes
1answer
171 views
Maps (Substitutions) With Infinite Domains
Finite maps model substitutions with finite domains. I either need to emulate operations on substitutions with infinite domains, or find a suitable way to represent substitutions with infinite ...
3
votes
3answers
177 views
How to know whether app is terminated by user or iOS (after 10min background)
How to know whether app is terminated by user or by iOS when restart app>
'By user' means "by Double-clicking Home Button and pressing - button". killed by user
'By iOS' means "app become background ...
3
votes
5answers
192 views
Shutdown Hook c++
is there some way to run code on termination, no matter what kind termination (abnormal,normal,uncaught exception etc.)?
I know its actually possible in Java, but is it even possible in C++? Im ...
3
votes
1answer
212 views
C# process lingers after all threads have terminated
I have a multithreaded C# "console" application with lots of threads trhat finishes up. All my threads exit. 90% of the time the application gracefully exits. But 10% of the time a copy of my ...
3
votes
3answers
303 views
How do I check if a program terminates?
Is there a general rule that can be used to determine this? E.g:
int i = 10;
while (i > 1 ) {
if (i%2 == 0) i = i/2;
else i = 3*i - 1;
}
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?
...
2
votes
3answers
126 views
termination of process in C/C++ windows
I am trying to catch the time when the process is ended (by killing it in taskmanager for instance). inorder that when it detects (inside the process that was ended), before exiting to do some work.
...
2
votes
0answers
105 views
ASP.NET web server having issues with HTTPS — Chrome Only
Okay, so at my work we are moving the SSL Termination from the web server to the load balancer. The load balancer then passes the request on to the server with a flag set indicating that the ...
2
votes
5answers
207 views
Weird Java problem, while loop termination
I have a piece of code that looks like this:
Algorithm a = null;
while(a == null)
{
a = grid.getAlgorithm();
}
getAlgorithm() in my Grid class returns some subtype of Algorithm ...
2
votes
3answers
90 views
Need to know how to check if the inputted string has terminated within a thread-safe logger in C++
I am very new at this and apologise if my question is not clear.
I have created a thread safe logger in C++. This logger will be used in a large program & will be called from multiple places. I ...
2
votes
1answer
839 views
C# Abort()ing threads on exit for a Form
So far I have this code run when the X button is clicked, but I'm not sure if this is the correct way to terminate threads on a form on exit.
Type t = this.GetType();
foreach ...
2
votes
3answers
245 views
Application doesn't exit with 0 threads
We have a WinForms desktop application, which is heavily multithreaded. 3 threads run with Application.Run and a bunch of other background worker threads. Getting all the threads to shut down ...
2
votes
3answers
315 views
Multi-Threading - Cleanup strategy at program end
What is the best way to finish a multi-threaded application in a clean way?
I am starting several socket connections from the main thread in seperate sockets and wait until the end of my business day ...
2
votes
3answers
1k views
How to run, monitor and stop a PHP script using SSH on a shared webserver?
Can a normal member (not an admin) of a shared webserver with (limited) SSH access run, monitor and stop a PHP script through SSH? If so, how would all three actions be done by the user?
I tried to ...
2
votes
5answers
541 views
Why won't my program terminate?
I have a .NET Compact Framework app that can runs on three windows machines (Desktop windows and two WinCE machines) and on the WinCE devices, the process never terminates on exit, even if I call ...
2
votes
6answers
962 views
Handling abnormal Java program exits
Suppose I have a Java application that opens a database connection. Normally I would add a connection.close() in a finally block, but this block wouldn't be executed in the case of a kill operation, ...
2
votes
5answers
2k views
Proper way to clean up a permanent thread in C#
I have an object, a Timeline, that encapsulates a thread. Events can be scheduled on the timeline; the thread will wait until it is time to execute any event, execute it, and go back to sleep (for ...
1
vote
2answers
83 views
producer-consumer: how to know inform that prodcution completed
i have the following situation:
Read data from database
do work "calculation"
write result to database
I have a thread that reads from the database and puts the generated objects into a ...
1
vote
3answers
84 views
How to gracefully exit this application?
In order to not show a form in C#.NET when first starting the application I have this:
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
...
1
vote
4answers
214 views
c++ waiting for thread exit
I wrote a program in C++ under Linux. For thread I am using pthread.
In the program I start the thread and this thread is running until I call the function, that should stop it. Here you can see my ...
1
vote
0answers
29 views
Termination of Apache HTTP kills Java superprocess as well
I have following problem in Ubuntu: I start an Apache HTTP server within my Java application executing "httpd -f _CONFING_FILE_ -D FOREGROUND". The Apache HTTP runs as a subprocess of my Java ...
1
vote
1answer
82 views
Terminate a batch file w/ another batch
Does anyone knows how to kill a batch file w/in another batch file?
Scenario:
batch file #1 is running (or looping) in the background. While #1 is on the background, a separate (not w/in batch file ...
1
vote
3answers
358 views
How do I terminate Javascript execution, á la exit/die/fatal assertion, etc.?
I have a loop in Javascript, I want to run console.log() in a specific iteration, and then terminate. What is the best method to go about doing this?
I'm wanting something like Perl's
die Dumper ...
1
vote
1answer
99 views
Do the memory that I use in my app get clean after termination? even the leaks? (iOS)
Do the memory that I use in my app get clean after termination? even the leaks?
Tnx
1
vote
1answer
198 views
C++ and Embedded Python - NUL Terminated Strings
I'm working on embedding Python 2.6 into an existing c++ application. So far I have the Libraries linked in and am able to successfully initialize the Python Interpreter and can also transfer data to ...
1
vote
3answers
583 views
How do i terminate an iPhone application gracefully in code
What is the proper way of ending an application on the iPhone when you are finished with it?
thanks,
anton
1
vote
1answer
149 views
Observe other application quit or sudden termination in cocoa app
I need to create wrapper around application, so I created little cocoa app that opens application with [[NSWorkspace sharedWorkspace] launchApplication:…], can I register some event when that ...
1
vote
5answers
397 views
process termination C++
I have the following problem: I have an application (server that never ends) written in C++ running as a service containing inside the main thread also 3 threads (mainly doing IO).
In the main loop I ...
1
vote
4answers
124 views
Cleaning a buffer before termination
I'm writing a program similar to the producer-consumer problem. Here's my main code:
public class PipeProcessor {
private volatile boolean close = false;
Pipe pipe;
Output out;
public ...
1
vote
2answers
930 views
What can cause an abnormal program termination?
MFC application (uses SQLite3.dll for DB access, along with other DLLs for accessing hardware) terminates abnormally. There is no particular sequence of termination :(
My application is a
Single ...
1
vote
2answers
1k views
Bulk Insert a File with a Text Field with Carriage Return (Enters)
I´m having trouble with bulk insert a file that contains a field in data type text, and it holds enters and the delimiter for the fields are pipes "|" and the row terminator is "|\n"
I get an error ...
1
vote
1answer
199 views
Terminating a process created using spawnv
I'm not experienced with processes at all, but what I'm set to to should be really simple.
All I do is spawn a process like this:
int spawnId = spawnv(_P_NOWAIT,"wgetlocal.exe",my_env);
Now, what I ...
1
vote
2answers
687 views
How do I obtain the exit code for a (Java) process with the Win32 API?
How can I obtain the JVM exit code (value of 'status' from call: System.exit(status)) from a Windows program which started this JVM? I tried to use result from the ShellExecute() call, but the result ...
1
vote
5answers
2k views
What happens in WCF to methods with IsOneWay=true at application termination
I have a client application that once in while notifies about its progress a service.
The method call to the service is marked with IsOneWay=true, because the notification doesn't need any return ...
0
votes
4answers
95 views
Intercept WM_CLOSE for cleanup operations
I have an external application that calls my application and is supposed to end it when the job is done. The log from this external application claims it uses WM_CLOSE on my app.
How can I intercept ...
0
votes
1answer
54 views
EC2 volume: how do I set it so that it WILL delete on termination?
I have an EC2 instance that I'd like to take a snapshot of, to use as an AMI for future spot instances.
Because of the way I created volume for this instance, it is currently set to not delete upon ...
0
votes
1answer
48 views
different types of line terminations(unix, windows, etc)
I'm note sure about conventions for different types of line termination in different programming languages. I know that there are 2 types, 1: line feed, 2: carriage-return, line feed. My question is: ...
0
votes
1answer
26 views
“proper” way to stop a deamon thread from class destructor
first of all "proper" because I presume people will tell me that it is a bad practice to launch thread from a class. :)
So I'm wondering what is the best way of stopping a infinite thread in a ...