Exiting, or quitting, refers to the termination of a process or program.

learn more… | top users | synonyms

2
votes
1answer
105 views

getting queue name in PUT API Exit (MQ_PUT_EXIT)

In Put MQ API Exit (before or after) is there any way to get the name of the target queue (i.e. the queue against which "put" call has been invoked). I tried inquiring on Hobj parameter, but got an ...
2
votes
1answer
88 views

how to pass return code to an at_exit function

is there a "built-in" way to know the exit code passed to exit inside an exit handler installed with atexit? For example, if a call exit(EXIT_FAILURE), my handler will perform different operations ...
0
votes
1answer
108 views

Terminate python application waiting on semaphore

I would like to know why doesn't python2.7 drop blocking operations when ctrl+c is pressed, I am unable to kill my threaded application, there are several socket waits, semaphore waits and so on. In ...
-3
votes
3answers
198 views

iOS exit(0) strange behavior

In application that I work on it, I need to close it from code. I'm using exit(0) for that. Yes, I know that i shouldn't close application from code When I close application in this way, and run it ...
1
vote
6answers
205 views

Terminating the program gracefully in C

I have sort of a homework and it asks me to end the program gracefully without explicit termination such as calling exit() or killing the threads. However I cannot think of any other methods than ...
0
votes
2answers
2k views

Detect End Process From Task Manager In C#

I have an application in C#, and would like to monitor its current status, i.e. whether its running or closed. So far i am able to track the status if the application exits during a run time error, or ...
0
votes
3answers
174 views

How do I retain value of a variable after exit() function in PHP

Please what is the best way to get the new value of a variable after the exit function in php. My script below is a sample, I want to get new value of variable $ee and use it to echo an error message ...
1
vote
1answer
97 views

Return value outside of sys.exit default interval [0-127]

Is there any way to exit with an arbitrary value from a simple python script? Actually, I'd like to return with a port number. I've read around here and in the docs as well, but found only ...
1
vote
3answers
178 views

Do action uppon exit of ios - xcode

how can I assign actions on iOS when user presses the home button (exit)? I want this for an app which uses user login feature and i want uppon exit the user to logout. I dont want to use a button for ...
0
votes
0answers
133 views

python multiprocess will auto exit

I'm sorry my english is very poor,but I will try to explain it simply. My situation is every process I use Tkinter create a dialog.And then create a class name engine which create 6 threads then ...
1
vote
6answers
772 views

Exit from a console application in C#

I read a lot of things here on stackoverflow, comments, opinions and every kind of ideas. But anyway, I really need an explained way to exit my console application (I'm on VS2010 Framework 4) on C# ...
2
votes
1answer
206 views

Correct exit from PlayN game using back button in Android

I can't correctly exit from PlayN GameActivity using Back button. I am using following code: public class Loader extends GameActivity { public void main(){ PlayN.run(new Game()); } ...
-2
votes
2answers
208 views

Another command to replace exit in php?

is there any any other command we can use as an alternative to exit(); in php. Because it breaks my html code at the end of the page if the condition is not met and when script has to exit. Or if ...
0
votes
2answers
48 views

How to manage startup problems at the GUI level?

I'm working in an application that loads a few remote jsons at startup. The application has been programmed to do certain tests on the incoming data to prevent invalid states and to detect possible ...
5
votes
4answers
249 views

does exit() free allocated memory on both _SUCCESS and _FAILURE

Good morning! This a short snippet of code, with two calls to exit(3) in case of failure. Do these calls deallocate memory allocated by malloc? Google search once says it does, and even more times, ...
0
votes
3answers
101 views

How to make an ipad app impossible to close

I am programming an app for an experiment by the University of Queensland Psych Department. The app needs to be impossible to exit, or at least it would be preferable if it were impossible to exit. ...
0
votes
1answer
369 views

Exit Application in Visual C++

I try to exit an application (need to know the base structure of Visual C++ program) but the code of the MSDN isn't accepted. What am I doing wrong? private: System::Void ...
0
votes
5answers
869 views

console application exit method not working

exit method not working while pressing q return with exception handle error.its a console application should i used both application.exit() and envoirnment.exit() . both doesn't work . am i doing ...
0
votes
0answers
99 views

App doesn't exit after redirect to another URL when connected to PC

I have condition when I display a message when there is upgrade available and as soon as the user clicks on "Upgrade" button the application is redirected to the given Upgrade URL and application is ...
0
votes
1answer
677 views

How to create a correct exit button in qt

I'm trying to create an exit button that correctly closes the GUI I have made in QT. I have tried doing this in the following way: #include <QtGui/QApplication> #include "mainwindow.h" int ...
0
votes
3answers
1k views

How to finish all activity when exit from child activity

Example : I have 3 Activities, A,B, and C. from Activity A I open Activity B then From B open Activity C. Then I exit application by code : Intent intent = new Intent(Intent.ACTION_MAIN); ...
0
votes
4answers
193 views

Exiting the application

In my application i want to exit the application when clicking the back button.When first time entered into the app when clicking back from this screen means it is exiting.But if i got to next screen ...
1
vote
0answers
308 views

How can I have a python script safely exit itself?

Heres the scenario I have a password that must be entered if entered wrong the script will not proceed and just exit itself? But how can I tell the script to safely exit itself? I tried sys.exit() ...
0
votes
0answers
51 views

How to exit (or silent) remainder of parent html which includes me?

I have hundreds of already-existing HTML files, all using SSI to conditionally include a specific PHP short script. If the condition is true, the script is included after HTML and HEAD tags already ...
1
vote
3answers
248 views

Java application not exit on calling System.exit(0)

I have a Java application running on both Mac and Windows. I call System.exit(0) on user pressing "exit" button. The application works well on Win7. But on Mac, after I press "exit" button, the ...
0
votes
4answers
181 views

What's the purpose of exit(0) ?

I understand that exit(1) indicated an error , for example : if (something went wrong) exit(EXIT_FAILURE); But what's the purpose of using exit(EXIT_SUCCESS); ? When handling with ...
1
vote
3answers
1k views

Shell script: Execute command after running “exit” command in the shell script

I have a situation where in I have a command in my shell script that must be executed after a exit command is executed in the same script (I know!! It sounds crazy!!) I want to find a solution for ...
2
votes
1answer
261 views

__init and __exit macros usage for built-in and loadable modules

I was reading about linux kernel development and I just read some text that I don't understand. Here is the paragraph, which talks about the __init and __exit macros for modules: This demonstrates ...
2
votes
1answer
176 views

Perl Ending loops/code blocks based on user input (!die/exit)

just have a general question that came up while I was playing around with some stuff I coded. I was wondering if there is any way to terminate a specific part of the program based on user feedback (I ...
0
votes
2answers
156 views

why does jpeg_decompress_create crash without error message?

I've a problem with just this sample of code : struct jpeg_decompress_struct cinfo; struct jpeg_error_mgr jerr; cinfo.err = jpeg_std_error(&jerr); jpeg_create_decompress(&cinfo); My ...
0
votes
1answer
138 views

How to run a script at Cygwin shell exit?

In Cygwin, my .bash_profile looks like this: nohup mintty & exit The mintty command fires up and processes all of my real startup stuff with .bashrc. What I'd like to do is have all ssh-agent ...
1
vote
1answer
367 views

How to logout on app exit in Silverlight application?

I have a silverlight application with custom form authentication. How i can logout application when the browser window is closed? I tried something like this: public App() { Startup += ...
2
votes
3answers
366 views

Clean shutdown of a Python script

I have a threaded server written in Python that I start using the following shell script: #!/bin/bash base_path="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" public_dns=$(curl -s ...
7
votes
5answers
261 views

Why if/else vs. or/exit in PHP?

Seeing the exit() PHP documentation got me thinking: $filename = '/path/to/data-file'; $file = fopen($filename, 'r') or exit("unable to open file ($filename)"); Couple questions: What are common ...
1
vote
0answers
3k views

Exit mobile app in PhoneGap?

I´m building a project using JQuery Mobile and PhoneGap. Is there a way to exit an app when the user hits the back button (standard way of exiting an app on android) but you still have alot of ...
0
votes
1answer
168 views

exit splash screen on pressing back

on pressing "BACK" in the splash screen,the app exits and restarts after sometime.I don't want the app to be restarted once it exits from the splash screen.i tried public boolean onKeyDown(int ...
-2
votes
3answers
146 views

Crash with music service when exiting [closed]

if (MusicService.player1.isPlaying()) { MusicService.player1.stop(); stopService(new Intent(ButtonActivity.this, MusicService.class)); ...
1
vote
1answer
577 views

exit() function fails to exit process

I'm working on a multithreaded C++ application in Linux with FreeGLUT. Oddly enough, calling exit() in one of my threads results in an onexit() callback being called and completed, but fails to exit ...
0
votes
1answer
381 views

Setting a delayed shutdown time on a remote LInux via SSH then exiting

I have looked at all the answers here on SOF, and not seen what would work. My goal: Have a EC2 QA server halt itself 55 minutes after last usage My strategy: Everytime the remote machine is used, ...
0
votes
5answers
405 views

stop script or loop after first match without using exit;

no idea how to ask this question... the problem is that I need to stop the loop from runing if if ($current[$id][$i]['item'] == '') is true, so whatever the script needs to do or in this case echo, ...
0
votes
0answers
60 views

Issues trying to Authenticate the Manager App in Tomcat 7

I know this topic has been covered but no matter how I follow them I am still having problems trying to authenticate my tomcat 7 manager app. I keep getting a 401 Unauthorized page. My config is as ...
0
votes
4answers
822 views

exit function stack without exiting shell

I was writing a script and then came across a odd problem. If I'd source a script that contains a bunch of functions that may call an error function which outputs a string and then exits, it will ...
0
votes
3answers
2k views

Exit/Finish an app/activity - android

I've got 4 activities say Act1, Act2, Act3 and Act4. A button in Act1 opens Act2, a button in Act2 opens Act3, a button in Act3 opens Act4. I want two things to be done: I've a button in Act4 which ...
1
vote
2answers
233 views

how to exit the entire app in a multiprocessing program

Here is the sample codes, just as the codes described, i want to exit the entire app in one running processing. but when i invoke the exit(0) function, some other processings are still running. so how ...
0
votes
2answers
183 views

Windows form application can't be closed normally

I have problem when closing the windows form application. I need to know is it always called private void Form1_FormClosing(object sender, FormClosingEventArgs e) if I press X button on the form and ...
1
vote
3answers
139 views

Skipping C++ global destructors

Is there a way to either suppress the generation of destructors for global objects (in particular those of collection types such as vector and unordered_map), or to exit a program without calling such ...
1
vote
1answer
259 views

Restarting Application after Updater on Qt

After a successful update, I am using the following logic to restart the application: QString appName = QApplication::instance()->applicationName(); QString appDir = ...
0
votes
2answers
123 views

Returning to a menu after an external application is done or cancelled

I am writing up an interface that references several external Utilities and Anti Virus applications. In this case, I have one menu that has options for things like Malwarebytes, CCleaner, Windirstat, ...
-3
votes
1answer
291 views

wait() and exit() with parent-child processes

A fork has already occurred in code: if (pid == 0) { printf("I am child PID %d\n", getpid()); exit(EXIT_SUCCESS); } else { pid_t child; int status; //need wait() function that ...
0
votes
2answers
224 views

How do I programmatically stop execution of a python script, without closing python and maintaining the variables?

I have an object oriented program and I want to stop execution and maintain the python memory of all the variables that where in memory during execution. I want to do that so that I can experiment ...

1 3 4 5 6 7 14