0
votes
1answer
62 views
Android: Callback for an application launch
Is there a way I can be notified of an application launch and termination in Android? I mean, more like subscribing to the Activity Manager and then determining which applications …
1
vote
2answers
53 views
How to run, monitor and stop a PHP script using SSH on a shared webserver?
Can a normal member (not an admin) of a shared webserver with (limited) SSH access run, monitor and stop a PHP script through SSH? If so, how would all three actions be done by the …
0
votes
3answers
60 views
Must i abort this thread? Waiting for namedpipes. How do i do this properly?
I have another question about this same code and keeping the pipe open after the client closes it
But here i have a problem gracefully terminating my app. My main code is below. T …
1
vote
2answers
76 views
Bulk Insert a File with a Text Field with Carriage Return (Enters)
Hi!,
I´m having trouble with bulk insert a file that contains a field in data type text, and it holds enters and the delimiter for the fields are pipes "|" and the row terminator …
0
votes
3answers
77 views
Why won’t my program terminate?
I have a .NET Compact Framework app that can runs on three windows machines (Desktop windows and two WinCE machines) and on one of the WinCE devices, the process never terminates o …
22
votes
14answers
1k views
Next Steps After Being Fired?
I was fired from my job this morning, after an incident on Monday night for which I was suspended yesterday. I've contacted an appropriate government agency to look into the matter …
3
votes
8answers
464 views
detect program termination (C, Windows)
I have a program that has to perform certain tasks before it finishes. The problem is that sometimes the program crashes with an exception (like database cannot be reached, etc).
N …
0
votes
1answer
31 views
How to instantly termainate an un-supervised script on demand?
I have a GUI which resembles an interpreter. It allows the user to write a script in Jython (implementation of Python in Java) and run it whenever he wants. Apart from that, I also …
7
votes
6answers
517 views
Guaranteed file deletion upon program termination (C/C++)
Win32's CreateFile has FILE_FLAG_DELETE_ON_CLOSE, but I'm on Linux.
I want to open a temporary file which will always be deleted upon program termination. I could understand that …
5
votes
4answers
2k views
Terminating a Python script
I am aware of the die() command in PHP which stops a script early, how can I do this in Python?
6
votes
6answers
625 views
Why shouldn’t I use Process.GetCurrentProcess().Kill() to exit my WinForm application?
Right now, when the user want to exit my application, I do the few things I have to (ie disconnecting from the server, saving the user data...) and then I do the following :
Exit …
1
vote
5answers
780 views
Proper way to clean up a permanent thread in C#
I have an object, a Timeline, that encapsulates a thread. Events can be scheduled on the timeline; the thread will wait until it is time to execute any event, execute it, and go ba …
1
vote
2answers
246 views
How do I obtain the exit code for a (Java) process with the Win32 API?
How can I obtain the JVM exit code (value of 'status' from call: System.exit(status)) from a Windows program which started this JVM? I tried to use result from the ShellExecute() c …
1
vote
6answers
294 views
Handling abnormal Java program exits
Hello all,
Suppose I have a Java application that opens a database connection. Normally I would add a connection.close() in a finally block, but this block wouldn't be executed in …
0
votes
9answers
335 views
Does the termination condition of a ‘for loop’ refresh in VC++ 6?
for (int i = 0 ; i < stlVector.size() ; i++)
{
if (i == 10)
{
stlVector.erase(stlVector.begin() + 5 )
}
}
Does the termination condition part "stlVector. …
