0
votes
4answers
136 views
What isthe best way to write a C# application “kill switch”?
I need to write a "kill switch" into my C# application for licensing/billing purposes. What is the best way to do that?
The requirements are as follows (its actually 2 kill switch …
1
vote
2answers
65 views
killing a win process from a C# console application: How do I set permissions?
using Process.Kill() from an ASP.NET web application...
I get a Win32Exception with text "Access is denied"
googling has several times told me to set permissions. However i don' …
0
votes
0answers
39 views
Kill window or application just like linux do [closed]
Is there anyway that we can kill or force close a particular hanging window or hanging application by selecting it with some hotkey . Similar like CTRL+ALT+ESC and select window in …
2
votes
3answers
108 views
In perl, killing child and its children when child was created using open
Here's my code, with error handling and other stuff removed for clarity:
sub launch_and_monitor {
my ($script, $timeout) = @_;
sub REAPER {
while ((my $child = …
3
votes
2answers
90 views
How do I close the stdout-pipe when killing a process started with python subprocess Popen?
I wonder if it is possible to shut down the communication pipe when killing a subprocess started in a different thread. If I do not call communicate() then kill() will work as expe …
0
votes
8answers
178 views
linux: kill background task
How do I kill the last spawned background task in linux?
Example:
doSomething
doAnotherThing
doB &
doC
doD
#kill doB
????
0
votes
3answers
37 views
Automatic timeout for launchd jobs
I have a launchd job that I've configured to run my unit tests. Every now and then, the unit tests will hang (usually because of some bad code). I know that my test usually only …
0
votes
1answer
108 views
QT: kill current process?
Is there a way in QT to terminate a'la TerminateProcess the current process?
QProcess::kill() seem to be only applicable to other, external processes.
0
votes
2answers
86 views
kill detached screen session
Hi,
I learned from somewhere a detached screen can be killed by
screen -X -S [session # you want to kill] kill
where session # you want to kill can be got from
screen -l …
0
votes
5answers
111 views
what to do when windows goes in dreaded 100% cpu usage zombie mode
Hi,
happens to me occasionally:
I start my program in visual studio and due to some bug my program goes into 100% cpu usage and basically freezes windows completely.
Only by utt …
2
votes
0answers
107 views
kill -9 programs but they still hang on [closed]
Hi,
I tried to kill all my background jobs submit earlier under KUbuntu by
kill -9 $(jobs -p)
Although this command immediately gave the message like
[1] Killed myjob …
1
vote
3answers
227 views
When a parent process is killed by “kill -9”, will subprocess also be killed?
One of my colleague told me this morning, when he killed supervisord by "kill -9", the subprocesses of supervisord is not killed.
He is quite sure about that, but I tried many t …
0
votes
2answers
73 views
How to get notified when a process terminates in Windows and Linux?
I want to write a program, that should be notified by O.S. whenever any running process on that OS dies.
I don't want to myself poll and compare everytime if a previously existin …
0
votes
3answers
108 views
Kill process after launching with AuthorizationExecuteWithPrivileges
If I launched a shell script using AuthorizationExecuteWithPrivileges what would be the easiest way to kill the script and any other processes that it spawned.
Thanks
0
votes
1answer
198 views
How to detect a Kill Process event
In C# i using process.Kill() kill a process,
at the same time in killed application how to detect this event?
BTW: Application.ApplicationExit event has not been fired!
