1
vote
1answer
39 views
viewing c# console app arguments
Hi,
I have a console app (written in c#) that is passed various arguments from the command line by an external application (an InstallShield exe). Without adding code into the console app or …
5
votes
6answers
2k views
Killing a defunct process on UNIX system
I have a defunct process on my system:
abc 22093 19508 0 23:29 pts/4 00:00:00 grep ProcA
abc 31756 1 0 Dec08 ? 00:00:00 [ProcA_my_collect] <defunct>
How can I kill …
0
votes
4answers
158 views
+300
SQL Server: Kill Process using Stored Procedure
Hello all,
I want to modify the following as it doesn't seem to kill processes - I think its supposed to disconnect users (is this the same?). I want to be able to kill all process for a particular …
1
vote
1answer
20 views
BlackBerry - Does TimerTask run in the background?
Hello,
Does TimerTask work even if my exit my application and come to home screen or explore other apps?
I have read the forum and find out the thread kind of easy mechanism is to use TimerTask in …
0
votes
5answers
327 views
Redirect stout from child process with .net
I'm using the following code
System::Diagnostics::Process^ p = gcnew System::Diagnostics::Process();
p->StartInfo->FileName = "tnccmd.exe";
p->StartInfo->UseShellExecute = false;
…
1
vote
9answers
139 views
When deciding on a feature, what do you do?
Do you primarily think of reasons TO implement it, or reasons NOT TO implement it? What are the advantages of each?
0
votes
2answers
34 views
Kill Running PHP Script via Process ID?
Hello all,
I make lots of GET requests to several PHP scripts via AJAX. I want to ask for implementation advice on how to kill a PHP script that is currently running (in the background).
Is there …
2
votes
8answers
417 views
Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?
I use Python 2.5.4. My computer: CPU AMD Phenom X3 720BE, Mainboard 780G, 4GB RAM, Windows 7 32 bit.
I use Python threading but can not make every python.exe process consume 100% CPU. Why are they …
2
votes
6answers
106 views
when a process is killed is this information recorded anywhere?
Question:
When a process is killed, is this information recorded anywhere (i.e., in kernel), such as syslog (or can be configured to be recorded syslog.conf)
Is the information of the killer's PID, …
1
vote
3answers
63 views
why Ghost Process appears after kill -9
Hi,
In my Python script, I first launch a subprocess by subprocess.Popen(). Then later on, I want to kill that subprocess by kill -9 Pid.
What I found is that after the kill is executed, the …
1
vote
4answers
51 views
Bash Daemon Named “sh” or “sleep” not the filename…
I have created a simple bash script, chmod +x, and successfully am running it as a background service.
But, the script is called "sh" or "sleep" or whatever command seems to be running at the time, …
0
votes
2answers
45 views
Is there a way to detect if/when a Process starts another Process in C# .Net 2.0?
I'm looking for a way to detect if a Process started by my application has in turn spawned additional Processes. The hope is that i can have a thread that starts and application, watches until it …
3
votes
4answers
57 views
Tie the life of a process to the shell that started it.
In a UNIX-y way, I'm trying to start a process, background it, and tie the lifetime of that process to my shell.
What I'm talking about isn't simply backgrounding the process, I want the process to …
3
votes
1answer
127 views
What’s the difference between system() in C and Perl?
The system() function will launch a new process from C and a Perl script.
What exactly are the differences between processes called by system() in C and from Perl scripts, in terms of representation …
0
votes
5answers
134 views
Running a Windows program and detect when it ends with C++
Suppose I run an application, after some time this app will get closed by user. Is it possible to find out when the program exits? Can I get it's process id when I run that application?
