Tagged Questions
The exit tag has no wiki summary.
36
votes
1answer
25k views
Android: Capturing the return of an activity
I have a question regarding launching new activities. It boils down to this.
I have 3 tabs on a view
A) contains gMap activity
B) camera activity
C) some random text fields.
Requirement is that ...
32
votes
2answers
6k views
WPF Command Line
I am trying to create a WPF application that takes command line arguments. If no arguments are given, the main window should pop up. In cases of some specific command line arguments, code should be ...
31
votes
13answers
28k views
SQL Server - stop or break execution of a SQL script
Is there a way to immediately stop execution of a SQL script in SQL server, like a "break" or "exit" command?
I have a script that does some validation and lookups before it starts doing inserts, and ...
22
votes
5answers
9k views
What is the difference between exit() and abort()?
In C and C++, what is the difference between exit() and abort()? I am trying to end my program after an error (not an exception).
20
votes
9answers
24k views
How do I abort the execution of a Python script? [closed]
Possible Duplicate:
Terminating a Python script
I have a simple Python script that I want to stop executing if a condition is met.
For example:
done = True
if done:
# quit/stop/exit
...
18
votes
5answers
12k views
Capture console exit C#
I have a console application that contains quite a lot of threads. There are threads that monitor certain conditions and terminate the program if they are true. This termination can happen at any ...
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 ...
13
votes
2answers
4k views
'break' equivalent keyword for VB
Just moved over to the VB team here at work.
Quick easy one for my 1st question.
What is the equivalent keyword to break in VB, i.e., to exit a loop early but not the method?
Cheers!
12
votes
7answers
678 views
Under what circumstances are C++ destructors not going to be called?
I know that my destructors are called on normal unwind of stack and when exceptions are thrown, but not when exit() is called.
Are there any other cases where my destructors are not going to get ...
11
votes
3answers
11k views
android - exit application code
I have an application wherein on homepage i have buttons for navigation through the application.
In that I have a button "EXIT" which when clicked should take user to home screen on the phone where ...
11
votes
2answers
7k views
Application.Exit() vs Application.ExitThread() vs Environment.Exit()
I am trying to figure out which I should be using. On closing my WinForm app fires of a Form in Dialog mode. That form runs a Background worker that Syncs the DB with the remote DB and displays it's ...
11
votes
5answers
17k views
How to exit from python without traceback?
I would like to know how to I exit from python without having an traceback dump on the output.
I still want want to be able to return an error code but I do not want to display the traceback log.
I ...
10
votes
9answers
833 views
How will _exit behave in a C++ program?
C99 offers the _Exit function, which exits "immediately", although it does may close file descriptors. Unix/POSIX extends this behavior by mandating the closing of all fd's without flushing (and ...
10
votes
3answers
2k views
Java: How to handle a SIGTERM
No many words needed:
Is there a way in Java to handle a received SIGTERM?
9
votes
5answers
2k views
When should we call System.exit in Java
What is the difference with or without System.exit(0) in following code?
1 public class TestExit
2 {
3
4 public static void main(String[] args)
5 {
6
7 ...
9
votes
4answers
739 views
Will exit() or an exception prevent an end-of-scope destructor from being called?
Let's say I have the following code:
struct mytype
{
~mytype() { /* do something like call Mix_CloseAudio etc */ }
};
int main()
{
mytype instant;
init_stuff();
start();
...
8
votes
1answer
103 views
Make R exit with non-zero status code
I am looking for the R equivalent of linux/POSIX exit(n) which will halt the process with exit code n, signaling to a parent process that an error had occurred. Does R have such a facility?
8
votes
4answers
232 views
So how does exit() work?
If I use exit(), GCC doesn't give a warning:
int main()
{
exit(EXIT_SUCCESS);
}
If we use any other function, we will definitely meet such a warning:
warning: control reaches end of non-void ...
8
votes
5answers
196 views
Terminate application AND call the destructors of local objects
I have some objects on the stack in main function:
int main(...)
{
CFoo foo;
CBar bar;
}
Also, I have a function, that keeps track of errors in my application:
void Err(std::string msg)
{
...
8
votes
5answers
396 views
Perl built in exit and print in one command
I know I can die but that prints out the script name and line number.
I like to do things like die 'error' if $problem;
Is there a way to do that without printing line number stuff?
It would be ...
8
votes
3answers
767 views
Generic way to exit a .NET application
I understand that there are a few ways to exit an application, such as Application.Exit(), Application.ExitThread(), Environment.Exit(), etc.
I have an external "commons" library, and I'm trying to ...
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
1answer
5k views
How can I tell my Cocoa application to quit from within the application itself?
I'm looking for a good way to tell my Cocoa application to quit itself. Rest assured that this will not be used for production code. I'm just looking for an easy way to run one test and then close the ...
7
votes
1answer
142 views
How to prevent embeded python to exit() my process
I'm having trouble while running embedded python. It turns out that I can't capture that SystemExit exception raised by sys.exit();
This is what I have so far:
$ cat call.c
#include ...
7
votes
2answers
4k views
How to exit in Node.JS
What is the command that is used to exit? I have seen node.exit() but node is not defined and var node = require('node') does not work. It says there is no module called "node".
7
votes
4answers
289 views
Catch an exit instruction by a library
To my astonishment and horror, I've just encountered the line System.exit(1); in a library I use. I'm planning on contacting the library's authors and asking what gives, but meanwhile is there any way ...
7
votes
2answers
364 views
How to discover that a Scala remote actor is died?
In Scala, an actor can be notified when another (remote) actor terminates by setting the trapExit flag and invoking the link() method with the second actor as parameter. In this case when the remote ...
7
votes
8answers
3k views
How do I make a C++ console program exit?
Is there a line of code that will terminate the program?
Something like python's sys.exit()?
7
votes
4answers
514 views
When abort() is preferred over exit()?
I know the differences between the two. One notable thing is that abort() sends SIGABRT signal, so it may be relevant when your software relies on them. But for a typical application exit() seems to ...
7
votes
4answers
400 views
Exit functions in C
What is the difference between exit(), _exit() and _Exit() in C?
How do I decide which to use?
On bash,
man 2 exit
gave me the page _EXIT(2), whereas
man 3 exit
gave the page EXIT(3).
...
7
votes
2answers
1k views
How to run code before program exit?
I have a little console C# program like
Class Program
{
static void main(string args[])
{
}
}
Now I want to do something after main() exit. I tried to write a deconstructor for ...
7
votes
3answers
3k views
Application.Exit
I am using VSTS 2008 + .Net 3.5 + C# to develop Windows Forms application. My confusion is, seems Application.Exit does not force application to terminate? If not, which method should I call to make ...
7
votes
12answers
787 views
How do I guarantee fast shutdown of my win32 app?
I've got a C++ Win32 application that has a number of threads that might be busy doing IO (HTTP calls, etc) when the user wants to shutdown the application. Currently, I play nicely and wait for all ...
6
votes
4answers
448 views
C: Doing something when the program exits
In C, if my application ends unexpectedly can I call a function before that happens? I'm writing a flag into a database (processRunning = 1) that prevents other applications from starting a similar ...
6
votes
2answers
3k views
c# listen for key press in console app
How can I continue to run my console application until a key press eg "esc" is pressed?
Im assuming its wrapped around a while loop. I don't like readkey as it pauses and asked for the key rather than ...
6
votes
3answers
445 views
Gracefully Exit Explorer (Programmatically)
How do you gracefully close Explorer programmatically?
By that I mean, how do you invoke this function programmatically:
Edit: Typo in the picture, it should say "Ctrl-Shift-Right-Click" instead ...
6
votes
1answer
304 views
What is the difference between using _exit() & exit() in a conventional Linux fork-exec?
I've been trying to figure out how the fork-exec mechanism is used inside Linux. Everything was going on according to the plan until some web pages started to confuse me.
It is said that a child ...
6
votes
4answers
927 views
Automatic exit from bash shell script on error
I've been writing some shell script and I would find it useful if there was the ability to halt the execution of said shell script if any of the commands failed. See below for an example:
#!/bin/bash ...
6
votes
5answers
2k views
What can cause Java to keep running after System.exit()?
I have a Java program which is being started via ProcessBuilder from another Java program.
System.exit(0) is called from the child program, but for some of our users (on Windows) the java.exe process ...
6
votes
6answers
1k views
Python subprocess: callback when cmd exits
I'm currently launching a programme using subprocess.Popen(cmd, shell=TRUE)
I'm fairly new to Python, but it 'feels' like there ought to be some api that lets me do something similar to:
...
5
votes
1answer
87 views
System.exit(0) vs JFrame.EXIT_ON_CLOSE
Is there any difference between the two. I was reading an article ( http://www.javalobby.org/java/forums/t17933 ) about that you should always use
System.exit(0);
Currently I use
...
5
votes
4answers
146 views
How can I exit only my sub-program, not the whole VM?
I have a Java swing launcher program to launch another class (running its main method).
Each program has its cancel button to exit itself.
I use System.exit(0); when this cancel button is pressed.
...
5
votes
3answers
165 views
Is there a replacement for EXIT_SUCCESS and EXIT_FAILURE in Java?
In C program, I generally use EXIT_SUCCESS or EXIT_FAILURE in exit() function to improve clarity and understandability of the program.
But in System.exit(), I couldn't use these MACROS.
I can ...
5
votes
4answers
1k views
Exit application on “Back” button on WP7
I know that in WP7 it is not possible to exit application programatically. So haw can I handle the following need?
My MainPage is empty, and has has the only purpose to make a test:
if user never ...
5
votes
4answers
164 views
Any way to exit outer function from within inner function?
Within PHP, if I have one function that calls another function; is there any way to get the called function to exit out of the caller function without killing the entire script?
For instance, let's ...
5
votes
2answers
912 views
Exiting batch with `EXIT /B X` where X>=1 acts as if command completed successfully when using && or || operators between batch calls
I'm trying to chain a series of .bat files using the EXIT /B X command to return success or failure and && and || for conditional running of the next .bat (e.g. a.bat && b.bat).
...
5
votes
2answers
517 views
C# Process Exited Problem
lets say I have a process with the ID 1234. This process is running before my application runs.
I have this code:
Process app = Process.GetProcessById(1234);
...
5
votes
1answer
186 views
ExitCode of -1 returned to C#
In my C# application, I'm firing up a program using the .NET Process class. Sometimes, after the program has finished, the Process.ExitCode is -1. It's a large program, and I'm having trouble ...
5
votes
1answer
366 views
How to exit a program with an exit code: C#
How to exit a program with an exit code in C#?
In java it would be System.exit(int code);
5
votes
2answers
2k views
Bash: How to undo the effect of “set -e” which makes bash exit immediately if any command fails
After enter set -e in an interactive bash, bash will exit immediately if any command exits with non-zero. How can I undo this effect? Thanks.