0
votes
1answer
57 views
Cross-platform way to terminate a process in python…
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 …
0
votes
2answers
81 views
How do I destroy a Window correctly?
I'm programming a little game, and I set the lpfnWndProc to DefWindowProc
and after that, I made a loop in that way:
MSG lastMessage;
while (true)
{
if (PeekMessage(
&a …
0
votes
2answers
63 views
Eclipse : How to terminate all applications at once?
Hi,
is there some way to terminate all (Java) applications launched with Eclipse at once?
br, Touko
0
votes
5answers
146 views
How to properly stop a multi-threaded .NET windows service?
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 se …
2
votes
3answers
123 views
Terminating Another App Running - Cocoa
Hey all,
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 …
0
votes
2answers
79 views
NSRunningApplication - Terminate
How would I use NSRunningApplication? I have something opposite of that which is launching an app:
[[NSWorkspace sharedWorkspace] launchApplication:appName];
but I want to close …
0
votes
2answers
74 views
Xcode NSRunningApplication Terminate
Hey Everyone,
I have this code:
NSWorkspace *sharedWorkspace = [NSWorkspace sharedWorkspace];
NSString *appPath = [sharedWorkspace fullPathForApplication:appName];
NSString *iden …
4
votes
2answers
165 views
Terminating an application programmatically using a file path in vb.net
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.St …
0
votes
2answers
84 views
Knowing when all threads complete and dealing with exceptions
Hi,
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 …
1
vote
2answers
527 views
delphi - terminate all the threads (TThread) on closing application
My application is a tcp/ip server, with main thread created only once & listening all the time. When new client connects, the main thread creates the new thread of TClientThrea …
2
votes
4answers
244 views
What is the correct way for a program to terminate its own process (Windows)
C# .NET 3.5
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 " …
1
vote
3answers
393 views
Terminate a process tree (C for Windows)
This has been asked before but I can't find a definitive answer, in code.
I open a process, ProcessA (with PID 1234). This process opens a child process, ProcessAB (PID 5678).
Aft …
0
votes
2answers
93 views
How to end an animation early in Cocoa Touch?
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 slidi …
2
votes
2answers
290 views
When is a C++ terminate handler the Right Thing(TM)?
The C++ standard provides the std::set_terminate function which lets you specify what function std::terminate should actually call. std::terminate should only get called in dire ci …
1
vote
4answers
293 views
Mac OS X equivalent for TerminateProcess(GetCurrentProcess,0);
I am looking for a simple and uncatchable way to terminate the Mac port of my C++ application. In Windows I was using
TerminateProcess(GetCurrentProcess, 0);
What's the equivale …
