The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
44 views

Kill JFrame thread in Java on windowClosing event

I am trying to write application which will create new window when pressing button, show current window count and close window and thread on closing the window. So basically, functionality is like ...
0
votes
2answers
48 views

linux kill process using timeout in milliseconds

I want to force terminate a program after a specified time is elapsed on linux. I found that 'timeout' util in linux can kill a program after a specified time, but it does not accept MILLISECONDS. ...
0
votes
2answers
54 views

How to run one function in another thread

I'm standing in front of a small (maybe not) problem. I have one function which parses XML file (very big xml ~1Gb) so it takes many time (5-6 mins to finish the func). I don't want to use it in ...
1
vote
3answers
24 views

Is there a way to stop Valgrind on the first error it finds?

If errors are found in valgrind's output, I want to generate the output using the debug version of the program. However, valgrinding thousands of runs in debug is way too time-intensive. So what I ...
0
votes
0answers
28 views

Stop timer thread

Here is my issue. I'm coding a game in Python in which you have to complete a labyrinth before the countdown reaches 0. So I wrote a Timer(threading.Thread) that looks like this. Only I do not know ...
1
vote
1answer
30 views

Escaping args[0] in Powershell

I'm writing a script to terminate a process identified by it's Commandline call. It works fine if i hardcode it like: Get-WmiObject Win32_Process -Filter "CommandLine LIKE '%worker04%'" | ...
0
votes
1answer
38 views

I can't figure out why it keeps terminating. it won't even work with debugger

I'm fairly new to python programming but I like to challenge myself so I made this as a stepping stone for a bigger project... the overall goal of this code is output a word from a list of words in a ...
0
votes
2answers
53 views

How can I catch this “This application has requested the Runtime to terminate it in an unusual way” error in my C program?

I have a C CLI program that crashes and generates this error in Windows 7: This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team ...
0
votes
2answers
57 views

PHP shell_exec - how to terminate the process if the connection is closed?

I have a working php script using shell_exec to execute an external program that take about 30 seconds to complete. Problem is that if an user close the browser or the connection is closed for some ...
0
votes
1answer
40 views

NSApplication.SharedApplication.Terminate doesn't actually terminate my application after unhandled exception

I am developing a simple application for OSX with MonoMac. When my application experiences unhandled exceptions, I catch them with: AppDomain.CurrentDomain.UnhandledException += (sender, e) => ...
1
vote
4answers
44 views

exception handling, unexpected terminator in c++

Following code is about exception handling. I got the output: Botch::f() I'll be back! Why Fruit is not caught? Thanks! Ignore this. I think I have provided enough detail. #include ...
1
vote
1answer
84 views

How to use “Application.Current.Terminate” using cpp on WP8

I am writing a C++ DirectX application without XAML for Windows Phone 8. I handled the back key because I want to close the app on manual, but I find no API for cpp. C# has official API ...
0
votes
0answers
28 views

Log out when program finishes execution in MVC

I am currently developing an MVC application in VS2012 and I was wondering if there is a way to log out any users that I logged in as during execution whenever I terminate the running og the program. ...
1
vote
1answer
86 views

Linux shell kill command while still running based on output

I have a set of C++ projects in Code::Blocks and a script that builds all of them. The script looks as following: codeblocks --build --target="release32" project1.cbp codeblocks --build ...
0
votes
1answer
33 views

Android: run thread for an amount of time

In my app I'm making calls to an API to fetch some JSON. Sometimes when people are on 2g network or their network drops the wait time becomes awkwardly long (especially when you show a dialog), thus I ...
0
votes
0answers
17 views

Why nested for loop doesn't work in this subprocess condition

I want to open a set of web page in 'httpsURL' for loop and repeat twice. However, it just only run once and never execute the outer index for loop. Any idea? Thanks. import subprocess as sp import ...
0
votes
0answers
32 views

Visual studio 2012 doesn't completely run program

I'm currently using monogame with visual studio 2012 to develop windows 8 games. I was developing a game and everything was going perfectly fine. A while later, visual studio wanted to update ...
-3
votes
1answer
26 views

What is the name of the part of the parenthesis (()) of a for-loop that terminates the loop

What is the name of the part of the parenthesis (()) of a for-loop that terminates the loop? The parenthesis is the () but i dont get the rest of the question so if I had a loop like enter code here ...
1
vote
1answer
101 views

Terminate python threads using sys.exit()

I am looking for a way to terminate a thread by using sys.exit(). I have two functions add1() and subtract1(), which are executed by each thread t1 and t2 respectively. I want to terminate t1 after ...
0
votes
3answers
39 views

jQuery - terminating animation

I'm experiencing an issue when I have a code like: $("#clickme").click(function () { $("#status").fadeIn(250).delay(2500).fadeOut(250); }); This shows after a user successfully saves some ...
1
vote
2answers
57 views

Inconsistent behavior when attempting to terminate python subprocess running on a thread

I am running into problems when I attempt to terminate a run a long running process running on a separate thread. The below is the program. WorkOne creates a subprocess and runs a long running ...
2
votes
2answers
72 views

Can anyone tell me when called terminate(), and when unexpected()?

What happens when ended function f() and g() ? #include<iostream> using namespace std; class A { ~A(){} } void f() { cout << "terminate" << endl; } void g() { cout ...
0
votes
0answers
57 views

How to terminate a java program that listens for client's requests to create a socket?

How do I make this program exit when I run it in terminal using the Java JDK in Ubuntu? I want to type in "end" when this program is running, but I can't get it to work. It listens for clients and ...
-1
votes
4answers
51 views

How to perform last actions upon user exiting an iPhone app?

Is there a way to perform some last actions when the user kills the application on iPhone? In UIApplicationDelegate there is applicationWillTerminate: but as I understand it's not guaranteed to get ...
1
vote
1answer
31 views

Alternative string terminate

I just wanted to ask, if there are some alternative (different than quotes) string terminators in Javascript? I've heard about the NULL byte that used to work on IE. I know that a string can't be ...
0
votes
2answers
101 views

App shutting down when scrolling through table view 'NSRangeException'

The twitter feed feature in my app had being working perfectly fine but i tested it again today but whenever i scrolled to the 4th tweet the app would should down. The error i am getting is: ...
0
votes
0answers
42 views

Kill a Python Thread [duplicate]

As the title suggests, how do I kill a python thread from the main thread that created it? I am currently running 3rd party code in a separate thread (say thread 2) from my main thread and sometimes ...
0
votes
2answers
75 views

Code calls terminate instead of throwing exception

I want to throw an exception like this: if (...) { throw "not found"; } and catch it like this: try { myfunction(); } catch (const char * msg) { cout << msg << ...
0
votes
0answers
40 views

sending enter signal automatically?

I'm using a code to recover passwords. when a user requested to reset password, it send a SMS to user's phone. my problem is that it gives me this output in the middle of the runtime. ...
1
vote
3answers
114 views

Run code on powershell script termination to close files?

I've got a script that's chewing through a lot of objects, and sometimes I want to kill it in the middle of the run because I see something going south. Unfortunately, I'm writing to a log file using ...
0
votes
1answer
73 views

erlang: how do I end processes on my system?

I ran the command i(). in the werl shell and it outputs a list of processes currently running on my system. Is there some way to end them all with one command?
0
votes
2answers
129 views

Python built exe process to kill itself after a period of time

How is it possible to get a compiled .exe program written in Python to kill itself after a period of time after it is launched? If I have some code and I compile it into an .exe, then launch it and ...
1
vote
1answer
46 views

erlang: ending a process without knowing PiD?

Simply put; how can I end a process if I accidentally forgot to equate a Pid variable when I started a process using this: 9> trivial_process:start(). <0.67.0> 10> I know I should ...
0
votes
2answers
51 views

Termination caused websites executing no more

I had a perfectly well running asp.net mvc application and I was debugging message sending via SignalRand I decided to stop debugging and went to edit some code. However, there was an error saying ...
1
vote
1answer
113 views

Android process not getting removed from “menu button view” when killed

Im trying to kill my application, and this also works fine. However when i press the menu key on my nexus 7, the process is still there displaying a black screen. When i click the process it runs app ...
1
vote
1answer
86 views

Catch when killed erlang application

I have erlang application. I run it, it's ok, all normally. When i killed erlang shell with my application with Ctrl+C, my application stoped too, it's right behavior all ok, but how can i catch this ...
1
vote
3answers
225 views

C programming return 0 does not terminate the program [closed]

I wrote this shell for my operating systems course, and for some reason my main function doesn't terminate when I type "exit", its supposed to break from the while loop and then return 0 to main, ...
0
votes
3answers
88 views

xcode terminating app due to uncaught exception

I have made an app in xcode and whenever I build or run the app it says there are no issues but then after the launch image displays the app seems to crash and throw up this error. Terminating app ...
1
vote
3answers
79 views

how to close a thread containing a blocking method in C#

I create a thread to handle a blocking method in my code. this way, my code can do other things beside running that blocking method. question: how can I terminate the thread properly? do I have to ...
0
votes
2answers
205 views

Windows 8 Metro/Immersive App - Force Terminate

I'm working on porting an app from iOS to WinRT/8 Metro/8 Immersive/Whatever the current name is. On iOS, we have the ability to set Application does not run in background to YES to cause the app to ...
0
votes
1answer
60 views

Pause main execution before iOS app terminates

How can I make my app pause for a couple of seconds to invoke a message inside applicationDidEnterBackground when I hit the home button? For example: - ...
0
votes
0answers
60 views

terminating task in celery doesn't seem to work on windows xp

I'm trying to kill/terminate a running task using the djcelery page in django admin but it seem it doesn't reach the worker thread. For revoke it is working fine as long as the task hasn't started ...
4
votes
1answer
169 views

SSH Session Started from Here Doc Does Not Exit Properly

SSH session doesn't terminate and give the tty back when executed inside a here document. Below is the code snippet that's inside my shell script: ssh -t -t root@$HOST_ADDRESS <<TERM_STRING cd ...
5
votes
3answers
326 views

Using App.Current.Terminate() method in Windows phone 8

As windows phone 8 provides us with this method for programmatically terminate an app, will there be any issue while app submission if we use this in app for terminating a page while there is no ...
0
votes
0answers
21 views

iOS5 - HTTP Request to server when app is terminated

I've got my location services up'n running. When the app is in the background, it works as well, as I can see the icon (arrow) in the topbar. I even have the location services running when the user ...
0
votes
1answer
101 views

PHP shell_exec() terminate process

Whenever I execute command via shell_exec() in PHP it automatically starts new process. Does PHP automatically terminate that process when the command is executed? Thanks!
0
votes
1answer
499 views

How is procdump -t — dump on process termination — used?

The question may be a bit awkward, but here's my detailed problem: Currently I'm looking into setting up SysInternals' procdump.exe to monitor an application of ours that exhibits spurious ...
-1
votes
2answers
67 views

What causes a php foreach loop to terminate?

I have been having problems on one of my foreach loops where PART of the loop terminates after just one iteration, with no output or error. After searching the web for answers, I still don't know any ...
4
votes
2answers
109 views

Exiting Interop controlled Excel when code running

I have written a wrapper for Excel in C# in order to allow the running of Excel workbooks in a batch process (under JobScheduler). My problem is this... If the code is taking too long to run or ...
1
vote
0answers
105 views

Eclipse ADT: Working but “Terminate” button greyed out…?

I've got Eclipse with ADT installed and running. Debugging is working over both USB and TCP/IP (WiFi) including live breakpoints. I'm a seasoned firmware/software developer, just new to Android/Java, ...

1 2 3 4 5 6