active questions tagged terminate - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:36:52Z http://stackoverflow.com/feeds/tag/terminate http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1759928/vb-net-application-does-not-fully-close 0 VB.NET Application does not fully close Kevin 2009-11-18T23:44:12Z 2009-11-19T20:16:10Z <p>Hey guys,</p> <p>When I launch my application, and press the "X" button on my app, or my quit button which deploys: me.close It will not fully close the application. Like the instance is still running in Visual Studio or if you go to task manager processes you can still see it there. How would I get this to fully close?</p> <p>Thanks</p> <p>Kevin</p> http://stackoverflow.com/questions/1682447/cross-platform-way-to-terminate-a-process-in-python 0 Cross-platform way to terminate a process in python... ThantiK 2009-11-05T18:06:03Z 2009-11-05T18:15:58Z <p>When I try to kill a process in windows with the subprocess.Popen.terminate() or kill() commands, I get an access denied error. I really need a cross-platform way to terminate the process if the file no longer exists (Yes, I know it's not the most elegant way of doing what I'm doing), I don't want to have to use platform calls or import win32api if at all possible.</p> <p>Also - Once I kill the task, I should be able to just delete the iteration of that portion of the library, no? (I remember reading something about having to use slice if I plan on working on something and modifying it while working on it?)</p> <pre><code>#/usr/bin/env python #import sys import time import os import subprocess import platform ServerRange = range(7878, 7890) #Range of ports you want your server to use. cmd = 'VoiceChatterServer.exe' #********DO NOT EDIT BELOW THIS LINE******* def Start_IfConfExist(i): if os.path.exists(str(i) + ".conf"): Process[i] = subprocess.Popen(" " + cmd + " --config " + str(i) + ".conf", shell=True) Process = {} for i in ServerRange: Start_IfConfExist(i) while True: for i in ServerRange: if os.path.exists(str(i) + ".conf"): res = Process[i].poll() if not os.path.exists(str(i) + ".conf"): #This is the problem area res = Process[i].terminate() #This is the problem area. if res is not None: Start_IfConfExist(i) print "\nRestarting: " + str(i) + "\n" time.sleep(1) </code></pre> http://stackoverflow.com/questions/1656790/how-do-i-destroy-a-window-correctly 0 How do I destroy a Window correctly? Tamir 2009-11-01T10:07:51Z 2009-11-01T21:38:04Z <p>I'm programming a little game, and I set the <strong>lpfnWndProc</strong> to <strong>DefWindowProc</strong> and after that, I made a loop in that way:</p> <pre><code> MSG lastMessage; while (true) { if (PeekMessage( &amp;lastMessage, this-&gt;getWindow(), 0, 0, PM_REMOVE)) { TranslateMessage(&amp;lastMessage); DispatchMessage(&amp;lastMessage); } } </code></pre> <p>So how do I handle the <strong>Close Window</strong> event in that case?</p> http://stackoverflow.com/questions/1644040/eclipse-how-to-terminate-all-applications-at-once 0 Eclipse : How to terminate all applications at once? Touko 2009-10-29T14:14:44Z 2009-10-29T14:30:13Z <p>Hi,</p> <p>is there some way to terminate all (Java) applications launched with Eclipse at once?</p> <p>br, Touko</p> http://stackoverflow.com/questions/1528209/how-to-properly-stop-a-multi-threaded-net-windows-service 0 How to properly stop a multi-threaded .NET windows service? Mark 2009-10-06T21:29:10Z 2009-10-07T15:59:53Z <p>I have a windows service written in C# that creates a truck load of threads and makes many network connections (WMI, SNMP, simple TCP, http). When attempting to stop the windows service using the Services MSC snap-in, the call to stop the service returns relatively quickly but the process continues to run for about 30 seconds or so.</p> <p>The primary question is what could be the reason that it is taking 30+ seconds to stop. What can I look for and how do I go about looking for it?</p> <p>The secondary question is why is the service msc snap-in (service controller) returning even though the process is still running. Is there a way to get it to only return when the process is actually killed?</p> <p>Here is the code in the OnStop method of the service</p> <pre><code>protected override void OnStop() { //doing some tracing //...... //doing some minor single threaded cleanup here //...... base.OnStop(); //doing some tracing here } </code></pre> <p><strong>Edit in response to Thread cleanup answers</strong></p> <p>Many of you have answered that I should keep track of all my threads and then clean them up. I don't think that is a practical approach. Firstly, i don't have access to all managed threads in one location. The software is pretty big with different components, projects and even 3rd party dlls that could all be creating threads. There is no way I can keep track of all of them in one location or have a flag that all threads check (even if i could have all threads check a flag, many threads are blocking on things like semaphores. When they are blocking they can't check. I will have to make them wait with a timeout, then check this global flag and the wait again). </p> <p>The IsBackround flag is an interesting thing to check. Again though, how can I find out if I have any forground threads running arround? I will have to check every section of the code that creates a thread. Is there any other way, maybe a tool that can help me find this out.</p> <p>Ultimately though, the process does stop. It would only seem that i need to wait for something. However, if i wait in the OnStop method for X ammount of time, then it takes the process approximately 30 seconds + X to stop. No matter what i try to do, it seems that the process needs approximately 30 seconds (its not always 30 seconds, it can vary) after the OnStop returns for the process to actually stop.</p> http://stackoverflow.com/questions/1489485/xcode-nsrunningapplication-terminate 0 Xcode NSRunningApplication Terminate Kevin 2009-09-28T21:31:55Z 2009-09-30T14:12:57Z <p>Hey Everyone,</p> <p>I have this code:</p> <pre><code>NSWorkspace *sharedWorkspace = [NSWorkspace sharedWorkspace]; NSString *appPath = [sharedWorkspace fullPathForApplication:appName]; NSString *identifier = [[NSBundle bundleWithPath:appPath] bundleIdentifier]; NSArray *selectedApps = [NSRunningApplication runningApplicationsWithBundleIdentifier:identifier]; // quit all [selectedApps makeObjectsPerformSelector:@selector(terminate)]; </code></pre> <p>which is suppose to close any application running from just the name which is: appName (NSString). </p> <p>When I debug the app and type in the application name into the NSTextField pointing towards appName, it closes my application instead of the other application I want it to terminate. I replied this question on another post but no one is responding so I thought maybe I can get a response if I start a new post... thanks. (THIS IS NOT A DUPLICATE, its just that people don't respond when I reply bakc...)</p> <p>Thanks.,</p> <p>Kevin</p> http://stackoverflow.com/questions/1481278/nsrunningapplication-terminate 0 NSRunningApplication - Terminate Kevin 2009-09-26T13:55:46Z 2009-09-27T13:19:50Z <p>How would I use <code>NSRunningApplication</code>? I have something opposite of that which is launching an app:</p> <pre><code>[[NSWorkspace sharedWorkspace] launchApplication:appName]; </code></pre> <p>but I want to close one. I get an error when I debug the code for <code>NSRunningApp</code> which is this:</p> <pre><code>NSRunningApplication *selectedApp = appName; [selectedApp terminate]; </code></pre> <p>Is there something wrong? if there is please point it out and how to fix it.</p> http://stackoverflow.com/questions/1469534/terminating-another-app-running-cocoa 3 Terminating Another App Running - Cocoa Kevin 2009-09-24T02:45:39Z 2009-09-24T14:03:56Z <p>Hey all,</p> <p>How can I terminate another app that is running in cooca. Let's say I have iTunes running, and I type in quit in my app, it would quit itunes. "iTunes" is just an example, it could be anything the user wants. I can open any app from my application, but I want to know how to close any app running.</p> <p>thanks</p> <p>kevin</p> http://stackoverflow.com/questions/1434573/knowing-when-all-threads-complete-and-dealing-with-exceptions 0 Knowing when all threads complete and dealing with exceptions Ketan 2009-09-16T18:02:43Z 2009-09-16T18:31:08Z <p>Hi,</p> <p>I am using the Executor framework to kick off several threads using a threadpool i.e newFixedThreadPool. I use threadpool.submit(aThread) to submit jobs to be executed by the threadpool and this works fine however I need to determine when all the threads are complete so that I can continue with other processing. I looked at using Future.get() which blocks until the thread is complete the problem here being that it blocks until a result is available. I also looked at using continuously calling the isTerminated() method followed by a sleep after issuing the shutdown to check if all threads are complete but this doesn't seem neat to me. Is there another cleaner way to this? Also if there is an exception raised in any one of the threads I want to be able to terminate all other running threads and also stop any queued up thread in the pool from starting. What is the best mechanism to do this? </p> <p>Look forward to hearing your replies</p> <p>TIA </p> http://stackoverflow.com/questions/1402126/terminating-an-application-programmatically-using-a-file-path-in-vb-net 4 Terminating an application programmatically using a file path in vb.net Cyclone 2009-09-09T21:10:54Z 2009-09-09T22:26:13Z <p>I want to terminate an application using the full file path via vb.net, yet I could not find it under Process. I was hoping for an easy Process.Stop(filepath), like with Process.Start, but no such luck.</p> <p>How can I do so?</p> http://stackoverflow.com/questions/566040/mac-os-x-equivalent-for-terminateprocessgetcurrentprocess-0 1 Mac OS X equivalent for TerminateProcess(GetCurrentProcess,0); Adrian Grigore 2009-02-19T16:14:05Z 2009-09-06T05:31:30Z <p>I am looking for a simple and uncatchable way to terminate the Mac port of my C++ application. In Windows I was using</p> <pre><code>TerminateProcess(GetCurrentProcess, 0); </code></pre> <p>What's the equivalent command I can use with Mac OS X / XCode / GCC? </p> http://stackoverflow.com/questions/1249840/how-to-end-an-animation-early-in-cocoa-touch 0 How to end an animation early in Cocoa Touch? dbotha 2009-08-08T20:38:40Z 2009-08-10T08:13:13Z <p>I have a UINavigationController onto which I push a 'loading screen' UIViewController whilst I asynchronously connect to a server. The push is implicitly animated with that sliding effect. If an error occurs whilst connecting, I pop the loading screen controller (again animated) and display an alert to the user. </p> <p>All is good if I pop the view controller after the animation has completed, however if the animation has yet to complete odd things occur. Usually the loading screen view remains on screen even though it has been popped from the navigation controllers stack. I'm pretty sure the problem has to do with the animation being in progress. For example this contrived code snippet always leaves secondController's view on screen for me:</p> <pre><code>[navController pushViewController: secondController animated: YES]; [navController popToRootViewControllerAnimated: YES]; NSAssert([delegate.navigationController.viewControllers count] == 1, @"oops"); </code></pre> <p>My current workaround is register a delegate with the navigation controller and implement the navigationController:didShowViewController:animated: method. I then only pop the loading screen controller when I know the first push animation has completed. However I would prefer to just end the animation early. </p> <p>I have tried to call removeAllAnimations on all layers in the layer tree for all sub views of the navigation controller's view. Whilst this approach ended the animation early, it still often left the loading screen view still on display after it had been popped. So basically is there a correct way of ending an animation early, or should I just stick with my work around?</p> http://stackoverflow.com/questions/1203185/delphi-terminate-all-the-threads-tthread-on-closing-application 1 delphi - terminate all the threads (TThread) on closing application michal 2009-07-29T21:32:22Z 2009-07-29T23:50:41Z <p>My application is a tcp/ip server, with main thread created only once &amp; listening all the time. When new client connects, the main thread creates the new thread of <code>TClientThread</code> type. There is however no list of running Client threads, as that would make my app a bit complicated... is there any way to execute "terminate" method on all the threads, even if the thread is busy (in my case "busy" means it's waiting for the data, where the timeout set is about 30 sec ... so I have to kill it anyway, without waiting.)? The simple closing application seems not to run "terminate" method on the threads, which ends up with memory leaks reported by FastMM...</p> http://stackoverflow.com/questions/1200507/what-is-the-correct-way-for-a-program-to-terminate-its-own-process-windows 2 What is the correct way for a program to terminate its own process (Windows) Matt 2009-07-29T14:04:40Z 2009-07-29T15:58:03Z <p>C# .NET 3.5</p> <p>I have a console application that is being called by another application on the computer. This console app runs continuously, and listens for data on stdin from the "parent" process. </p> <p>However, when the parent is stopped or killed, the console app that it started continues. Under normal circumstances, it sits and idles waiting for input from stdin, using minimal resources. However, as soon as the parent goes away, this console app spikes the CPU and starves the core it's running on with near 100% utilization. This continues until I manually kill the process.</p> <p>Ideally, the calling parent would clean up after itself, particularly since this is happening under normal (non exceptional) "stop" conditions. Unfortunately, this parent process is out of my hands.</p> <p>My first thought was to grab the invoking parent from within the console app, and monitor its PID. If the parent process goes away, I the console app would terminate itself. Currently, I'm doing this by:</p> <pre><code>Process process = Process.GetCurrentProcess(); m_ParentPID = 0; using (ManagementObject mgmtObj = new ManagementObject("win32_process.handle='" + process.Id.ToString() + "'")) { mgmtObj.Get(); m_ParentPID = Convert.ToInt32(mgmtObj["ParentProcessId"]); } string parentProcessName = Process.GetProcessById(m_ParentPID).ProcessName; Log("Parent Process: " + parentProcessName + Environment.NewLine); // Create a timer for monitoring self. Timer timer = new Timer(new TimerCallback(sender =&gt; { if (m_ParentPID != 0) { Process parent = System.Diagnostics.Process.GetProcessById(m_ParentPID); if (parent == null) { Log("Parent process stopped/killed. Terminating self."); System.Environment.Exit(0); } } })); // Kick on the timer timer.Change(m_ExitWatcherFrequency, m_ExitWatcherFrequency); </code></pre> <p>This only partly works though - it stops the CPU spike, but if I look at my processes from Sysinternals wonderful process monitor, I can see DW20.exe running - the "Microsoft Application Error Reporting" program. And it just ... sits there, and the console app remains in memory. </p> <p>What should I be doing here to correctly terminate the process to avoid this continuous CPU spike and unreleased memory? Eventually this needs to be running without intervention.</p> <p>P.S. I am using a command line application here as a "long running program" instead of a Windows Service or web service because the parent program can only be configured to execute a command line app for which it passes data in via stdin. (for those who are curious, this is ejabberd, using external authentication).</p> <p>EDIT:</p> <p>The code that waits for input from stdin is:</p> <pre><code>// Read data from stdin char[] charray = new char[maxbuflen]; read = Console.In.Read(charray, 0, 2); </code></pre> <p>I mention before that when the parent terminates, the console app goes crazy on the CPU. I attached a debugger to it from Visual Studio, and it is, in fact, still sitting on that line Console.In.Read. In theory then, when the self-monitoring timer triggers and sees the parent is gone, it attempts an System.Environment.Exit(0) when the other thread is on that Read() line.</p> http://stackoverflow.com/questions/1173342/terminate-a-process-tree-c-for-windows 1 Terminate a process tree (C for Windows) wonderer 2009-07-23T17:39:26Z 2009-07-24T16:01:57Z <p>This has been asked before but I can't find a definitive answer, in code.</p> <p>I open a process, ProcessA (with PID 1234). This process opens a child process, ProcessAB (PID 5678). After I'm done I terminate ProcessA but I still have the lingering of ProcessAB.</p> <p>How do I terminate the whole process tree? What I mean, how do I make sure that if I terminate the process I opened I am also terminating all the associated processes?</p> <p>Thanks</p> <p>Code is appreciated.</p> http://stackoverflow.com/questions/1058797/when-is-a-c-terminate-handler-the-right-thingtm 2 When is a C++ terminate handler the Right Thing(TM)? Joseph Garvin 2009-06-29T14:58:12Z 2009-06-29T19:18:42Z <p>The C++ standard provides the <code>std::set_terminate</code> function which lets you specify what function <code>std::terminate</code> should actually call. <code>std::terminate</code> should only get called in dire circumstances, and sure enough the situations the standard describes for when it's called are dire (e.g. an uncaught exception). When <code>std::terminate</code> does get called the situation seems analagous to being out of memory -- there's not really much you can sensically do.</p> <p>I've read that it can be used to make sure resources are freed -- but for the majority of resources this should be handled automatically by the OS when the process exits (e.g. file handles). Theoretically I can see a case for if say, you needed to send a server a specific message when exiting due to a crash. But the majority of the time the OS handling should be sufficient.</p> <p>When is using a terminate handler the Right Thing(TM)?</p> http://stackoverflow.com/questions/862256/how-can-i-end-a-lua-thread-cleanly 2 How can I end a Lua thread cleanly? CiscoIPPhone 2009-05-14T08:45:50Z 2009-05-15T15:27:25Z <p>My situation is that I'm using the Lua (C) API to execute a script held in a string. I would like the user to be able to terminate the execution of the script (this is essential if the script contains an infinite loop), how can I do this?</p> <pre><code>lua_State *Lua = lua_open(); char * code; // Initialisation code luaL_dostring(L, code); </code></pre> http://stackoverflow.com/questions/523878/how-to-terminate-scripts-process-tree-in-cygwin-bash-from-bash-script 2 How to terminate script's process tree in Cygwin bash from bash script Barry Kelly 2009-02-07T14:55:54Z 2009-02-09T02:38:23Z <p>I have a Cygwin bash script that I need to watch and terminate under certain conditions - specifically, after a certain file has been created. I'm having difficulty figuring out how exactly to terminate the script with the same level of completeness that Ctrl+C does, however.</p> <p>Here's a simple script (called <strong><code>test1</code></strong>) that does little more than wait around to be terminated.</p> <pre><code>#!/bin/bash test -f kill_me &amp;&amp; rm kill_me touch kill_me tail -f kill_me </code></pre> <p>If this script is run in the foreground, Ctrl+C will terminate both the <code>tail</code> and the script itself. If the script is run in the background, a <code>kill %1</code> (assuming it is job 1) will also terminate both <code>tail</code> and the script.</p> <p>However, when I try to do the same thing from a script, I'm finding that only the <code>bash</code> process running the script is terminated, while <code>tail</code> hangs around disconnected from its parent. Here's one way I tried (<strong><code>test2</code></strong>):</p> <pre><code>#!/bin/bash test -f kill_me &amp;&amp; rm kill_me ( touch kill_me tail -f kill_me ) &amp; while true; do sleep 1 test -f kill_me &amp;&amp; { kill %1 exit } done </code></pre> <p>If this is run, the bash subshell running in the background is terminated OK, but <code>tail</code> still hangs around.</p> <p>If I use an explicitly separate script, like this, it still doesn't work (<strong><code>test3</code></strong>):</p> <pre><code>#!/bin/bash test -f kill_me &amp;&amp; rm kill_me # assuming test1 above is included in the same directory ./test1 &amp; while true; do sleep 1 test -f kill_me &amp;&amp; { kill %1 exit } done </code></pre> <p><code>tail</code> is still hanging around after this script is run.</p> <p>In my actual case, the process creating files is not particularly instrumentable, so I can't get it to terminate of its own accord; by finding out when it has created a particular file, however, I can at that point know that it's OK to terminate it. Unfortunately, I can't use a simple <code>killall</code> or equivalent, as there may be multiple instances running, and I only want to kill the specific instance.</p> http://stackoverflow.com/questions/438380/what-can-cause-a-net-process-thread-to-terminate-unexpectedly 0 What can cause a .NET process/thread to terminate unexpectedly? ripper234 2009-01-13T09:01:44Z 2009-01-13T09:24:43Z <p>I'm trying to gather a complete listing of the reasons a .NET process or thread to terminate, even though the main() method is guarded by a try...catch clause.</p> <p>One such reason is Thread.Abort() (unless you call Thread.ResetAbort). Do you know of more reasons?</p> http://stackoverflow.com/questions/437232/why-does-exe-refuse-to-stop 3 Why does .exe refuse to stop? alankdkd 2009-01-12T22:18:02Z 2009-01-13T00:48:20Z <p>Hi there,</p> <p>I've "inherited" a legacy C#/C++ program that I have to debug. The current problem is that the .exe won't stop after I close the program, i.e. it still shows up in Task Manager.</p> <p>This is a problem, because it won't let me restart the program, because only one instance can run. Often killing the process doesn't work; I'm forced to reboot.</p> <p>I was under the impression that when the main program stopped, all the child threads were also supposed to stop, but I may be wrong.</p> <p>Q: What would cause a .exe to not stop?</p> http://stackoverflow.com/questions/404735/what-are-the-trade-offs-between-languages-that-terminate-statements-with-semicolo 1 What are the trade-offs between languages that terminate statements with semicolons and those that don't?? [closed] featureBlend 2009-01-01T08:44:51Z 2009-01-03T17:15:01Z <p>Are there any benefits to languages that terminate statements with a semicolon (C, Perl, etc.) compared with those that don't (Python, Ruby, etc.), or vice versa?</p> <p>(<em>Note to late-comers: the original title and question asked about "do you trust languages that don't use a semi-colon"; it was rewritten to be less argumentative. Some of the answers address the first version of the question.</em>)</p> http://stackoverflow.com/questions/230820/oracle-suite-terminate-job-application-in-hr-human-resources 0 Oracle Suite - terminate job application in HR (human resources) Rivaldinio 2008-10-23T18:17:33Z 2008-11-14T04:20:45Z <p>I am using the "hr_assignment_api.terminate_apl_asg" API to terminate applications, with out terminating the applicant.</p> <p>When I run it, it does nothing, and gives no error.</p> <p>I run it against data with two applications (different vacancies) for the same person. The Api seems to look for the primary application (wich can not be deleted with this API) by checking wether the 'effective_end_date' is less than 'end-of-time', but both applications have the effective_end_date = end_of_time, because neither of them is end-dated.</p> <p>Is the API flawed?</p>