Exiting, or quitting, refers to the termination of a process or program.
0
votes
2answers
128 views
XCode - See console output after app exit, when running multiple app instances
When I run two apps from XCode debugger, I can see their own NSLog into the console.
But when one app exist with an exit call, it is killed and I can't see the console log anymore. How may I do to be ...
1
vote
2answers
112 views
C - Program exits when input exceeds fgets allowance
I have the following program written in C:
The main problem with this program is that if the input exceeds 80 characters when using fgets() function, the program just exits immediately. The other ...
0
votes
1answer
303 views
UIApplicationExitsOnSuspend and screen refresh
I have an app that has the UIApplicationExitsOnSuspend info list property set to TRUE.
And now I am noticing a curious issue.
I start up the app and let it run on my phone and do not touch my phone. ...
0
votes
3answers
57 views
Generate exception from a C library function that forces quit
I am trying to wrap a C library function using C++. The function attempts to initialize a device. On error, it forces the execution of the program to terminate (probably with an exit(1)). I would like ...
-1
votes
2answers
85 views
Ruby, '==' not working
Here is my code:
@cmd == "exit"
when @cmd is a string variable "exit" it doesn't return true. Any suggestions why?
-Edit-
-Resolved
Error: Because @cmd was made by using '@cmd = gets' it added ...
0
votes
1answer
329 views
NSIS silent installer returning exit code 1
I compile an NSIS script to a .exe install file. I launch the .exe with command line \S silent option.
Installation performs silently as wanted, but there is exit code 1. Exit code 1 corresponds to ...
1
vote
1answer
80 views
erlang's EXIT and DOWN signal
The following code is also from rabbitmq's supervisor2.erl. The code's function is to kill supervisor's children, by for every child:
monitor child send an trappable exit signal
start timer
if ...
1
vote
3answers
343 views
perl threads exiting abnormally
I'm using perl's threads module with a simple crawler I'm working on so I can download pages in parallel. Ocasionally, I get error messages like these:
Thread 7 terminated abnormally: read timeout at ...
1
vote
2answers
293 views
Android: How to properly exit application when inconsistent condition is unavoidable?
First of all I already read about all this discussion that it isn't a good idea to manually exit an Android application. But in my case it seems to be needed. I have an AsyncTask which does a lot of ...
2
votes
0answers
57 views
When I made call through SIP phone, the mobile number edit into my dialed call log that I want to clear, how can I do that?
I have done the following changes into my code. I'm fresher in android development. I just want to clear the call log that written by the SIP phone, I have made my SIP phone using SIPDROID.
If I ...
0
votes
0answers
25 views
ecllipse - stop working somehow
i have windows 7,64 bit, and i installed eclipse c/c++
i use minGW to operate it, and even in Biray prahses - i put windows ME (or something like that)..
anyway, stuff works. i can print "hello ...
0
votes
0answers
17 views
Screen - salloc - exit by accident
I'm working on a remote cluster, and for development, I started to combine the screen utility with the salloc --exclusive command from the SLURM resource manager. However, two times, in two days, I ...
8
votes
1answer
136 views
Is it well-defined behaviour to exit the program before main?
It's definitely possible to execute code before main is called, as seen by many examples in this question.
However, what if in that pre-main code, the program is told to exit via std::exit or ...
1
vote
1answer
84 views
My exit(status) with setjmp un longjmp
Problem is - I have to implement my own exit(status) with setjmp and longjmp. Maybe someone could give some pointers?
1
vote
6answers
290 views
Terminating a c# Console application
I am trying to close my c# console application (running without debugging) and nothing is working... i have tried all the usual suspects with different exit codes but nothing is terminating it =/ is ...
1
vote
1answer
206 views
Java Application hangs on Windows Shutdown
I have this whole code. My Application hangs up after the windows is force shutdown then cancel.
application running... >> windows force shutdown >> cancel >> back to windows ...
0
votes
1answer
134 views
exit confirmation message javascript [duplicate]
Possible Duplicate:
How to show the “Are you sure you want to navigate away from this page?” when changes committed?
I use a javascript message for confirming people who will exit the page, ...
0
votes
2answers
101 views
How to wrap existing script with infinite loop?
I have script which has many sys.exit() and raw_input() commands.
I'd like to wrap it with infinite loop.
The forever.py is running from windows idle.
Something like code below, but it doesn't work.
...
0
votes
2answers
206 views
How to show exit confirm dialog when user clicks Home button?
I need to show the exit confirm dialog when user pressing the Home button. If yes, need to exit the application.
Is it possible to show when pressing the Home button?
1
vote
1answer
125 views
Program exits immediately when entering an out of range number for char
I have a program written in C. The following is a snippet of the program:
signed char answer;
printf("----Technology Quiz----\n\n");
printf("The IPad came out in which year?\n");
printf("Year: ");
...
1
vote
1answer
243 views
Java crash when exit application: A fatal error has been detected by the Java Runtime Environment:
I have a Java application to drive a motor. The driver of the motor has been written in C++ with the Microsoft Visual Studio. I import (native code) this dll. The Java application runs without ...
0
votes
2answers
290 views
Preventing application exit in TideSDK
I am trying to prevent the user from closing the window when they click on the close button. I would like to have the application dock to the system tray.
My first step is to recognize when the user ...
0
votes
1answer
86 views
How to exit a layout and keep methods running?
I have Act1 and Act2. On Act1 there is a button that opens Act2 that sets a new layout.
How can I exit the layout but keep the methods running?
My problem is not how to program the parallelism, my ...
0
votes
0answers
70 views
AttachThreadInput(): preventing attached application from quit
I'm attaching my application to another process using SetParent, AttachThreadInput to display my window. When the "host
" application I'm attached to is closing, my process gets closed, too.
What are ...
0
votes
1answer
212 views
Java Exit on Windows Shutdown
I have this code. I want to exit my Java Application if it detects that the computer is shutting down. I have this problem, If shutdown is clicked on windows my java application disconnects from ...
4
votes
3answers
324 views
How to properly exit a c# application?
I have a published application in C#. The problem here is whenever I close the main form by clicking on the red exit button, it closes the form but it doesn't close the application. I found this out ...
1
vote
2answers
92 views
Android sdk activity flow
Can someone help me replicate the following scenario:
I'm having a activity A with some specific tasks from which the app goes to activity B. When the user goes to B and presses back the app should ...
1
vote
0answers
93 views
php on windows exit causes response to abort
So here's the story
Apache + php + Yii framework on windows
In some cases, for example redirect, the framework is calling exit($status) where $status = 0 and it works fine on the linux server, yet ...
0
votes
2answers
96 views
Exit my program after finding an error
My program suppose to exit after any error occur!
It gets 3 command line and validate and check if they are in range. if they are not, then must print the error and exit the program!
I did this ...
3
votes
3answers
159 views
launch cmd run command isn't working
I am working on a script or batch file (or combo of the two) which imports an outlook prf file, then launches a new cmd.exe window runs a application specific program which when passed a server ...
1
vote
2answers
145 views
When I develop an Android application ,how to exit this application?
When I develop an Android application, how to exit this application? I try anything what I can do ,but I can't exit my application what I am developing. How to do this ?
Any idea?
This my solution ...
1
vote
2answers
88 views
How can I exit my Dart (vm) program?
(Sorry, I know that is this is mostly a repeat of John Evan's question, but the previous answer must now be outdated.)
I'd like to be able to specify an exitCode and leave the my (vm) program if a ...
1
vote
1answer
56 views
exit from all methods in an object in ruby [duplicate]
Possible Duplicate:
How to break outer cycle in Ruby?
say I have this code:
class A
def initialize
myMethod()
print "This should not be printed"
end
def myMethod
#here
...
-1
votes
2answers
167 views
need help an exit statement in C programming
This my code. It lets the user input number and then outputs it into a 32 bit binary number. The problem that I'm facing is that I need to find a way so that it keeps asking you for number after the ...
1
vote
5answers
257 views
In a “using” block is an OracleConnection closed
In a “using” block is an OracleConnection closed if System.Environment.Exit(0) is issued in the catch statement?
Example:
OracleConnection oracleConnection = getOracleConnection();
...
1
vote
6answers
901 views
Android application Exit for home screen
I have develop android application,there I have Exit button in menu option.I want exit application and go to home screen when I press exit button. for that I have used
following methods
...
0
votes
1answer
131 views
Asking user to restart app via exit(0) in iphone?
I want user to start new session at some point of time in my app, so can i ask user to restart app now using popup and if he clicked 'yes' .i exit the app using exit(0).
is it valid under apple human ...
1
vote
1answer
148 views
python - multithreading — join() method
import threading, time
class test(threading.Thread):
def __init__(self,name,delay):
threading.Thread.__init__(self)
self.name = name
self.delay = delay
...
2
votes
1answer
83 views
pthread_mutex_t* release or not when program abort or exit?
allocated pthread_mutex_t* use the "malloc()", when the program aborted or exit, it need to free it?
if not free it, it will have problems?
just i know, the system will reclaim memory when your ...
1
vote
1answer
208 views
why the code return 23
In the tutorials of directfb, the link is Simple fullscreen application that draws a horizontal line
My question is why it return 23?
in ASCII, 23 means ETB, what's the reason to return ETB? It ...
6
votes
5answers
1k views
Difference between 'die' and 'exit' [duplicate]
Possible Duplicate:
what are the differences in die() and exit() in PHP?
I am totally confused in the difference of die and exit.
Most programmers use die like this.
$link = ...
1
vote
1answer
97 views
How to implement the “exit” action in PyQt4?
Many software have an "exit" action in the menubar items. I wonder know how to implement it in pyqt4.
I think only invoking the method QtCore.QCoreApplication.quit() is not enough, because the ...
1
vote
2answers
1k views
Exit Application in Qt
I have built an app in Qt that contains two buttons: an exit button and an import button. When the import button is pushed, a list of buttons is shown in a scrollarea on the screen (the file ...
-1
votes
1answer
220 views
Environment.Exit in C# [closed]
I'm having a problem exiting C# application.
I'm using Environment.Exit(0), but I can still see the application in Task Manager.
From what I've read, Environment.Exit(0) should close it, no matter ...
1
vote
2answers
84 views
Closing the Camera Application from a T/P Application
My Problem... I have accessed the Camera App from my third party app , I then take a picture. then I go to the Menu and I have added in a menuitem (MENUITEM_CAMERA_PREVIEW) . My menu item must ...
1
vote
1answer
87 views
How to automatically kill buffer on terminal exit in Emacs
How can I automatically kill the terminal buffer when the process associated with it ends.
6
votes
3answers
284 views
In Perl is there a way to restart the program currently running from within itself?
I am running a program in Perl that at one point evaluates data in an if statement called from within a subroutine, e.g.
sub check_good {
if (!good) {
# exit this subroutine
# ...
3
votes
1answer
5k views
collect2: Ld returned 1 exit status build make error
Compiler: Qt
Language: C++
This program is just not for me haha, this is the third time I've had to ask for help, and it's driving me crazy (thank you everyone for being so patient and helpful with ...
0
votes
2answers
327 views
Can't exit WPF Application
I know this question has already been answered but despite my efforts I can't close my app programatically. I've tried this, which doesn't work :
private void CloseAppCommand_Executed(object sender, ...
2
votes
3answers
394 views
Python CTRL-C exit without traceback?
Building a simple Python game of "Rock, Paper, Scissors" for learning purposes.
I've read some other posts here on exiting from Python without a traceback. I'm trying to implement it but still ...

