1
vote
1answer
49 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 …
0
votes
2answers
35 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 …
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 …
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
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, …
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 …
0
votes
5answers
136 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?
3
votes
1answer
129 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
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 …
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
3answers
106 views
Process.Start(”IEXPLORE.EXE”) immediately fires the Exited event after launch.. why??
Hi,
i have a strange problem with IE8 installed in xp. i was trying to launch IE using an System.Diagnostics.Process.Start method in c#. And i have a requirement to trap the exited event of the IE …
0
votes
0answers
7 views
os x process state UE
I've got process running that can't be killes. It's my EyeTV App and here is what 'ps aux' says:
cb0 87583 1,0 3,4 812796 144236 ?? UE 21Nov09 2638:11.45 [.....]/EyeTV
The process …
0
votes
2answers
34 views
VHDL - When does a process() run for the first time?
Hi !
Consider : process(a)
According to the text i have :
A process is first entered at the time
of simulation, at which time it is
executed until it suspends itself due
to a wait …
0
votes
3answers
37 views
Can I Attach to Process without it being already running?
Using Visual Studio 2005's Attach to Process, is it possible to select an application to run and then debug as opposed to an application that is already running?
I am trying to debug a FileMaker …
2
votes
4answers
58 views
How do i identify improvement areas for software development in my team?
hi guys,
i just joined this new group and basically haven't even really done any heavy lifting development but just some basic web store migration stuff. and i've been given the challenge of coming up …
