Tagged Questions
The process-control tag has no wiki summary.
12
votes
4answers
7k views
Possible to abort shutdown on Linux? [closed]
I'm familiar with and use shutdown in Linux, and typically just do
> shutdown -h now
But is there a way to stop shutdown from happening, say if I aim to shutdown 10 minutes from now and then in ...
9
votes
2answers
937 views
Using Unix Process Controll Methods in Ruby
Ryan Tomayko touched off quite a fire storm with this post about using Unix process control commands.
We should be doing more of this. A lot more of this. I'm talking about fork(2), execve(2), ...
8
votes
4answers
3k views
PHP Daemon/worker environment
Problem: I want to implement several php-worker processes who are listening on a MQ-server queue for asynchronous jobs. The problem now is that simply running this processes as daemons on a server ...
4
votes
3answers
99 views
Kill background php script (shared hosting)
I created a script that runs in the background using the ignore_user_abort() function. However, I was foolish enough not to insert any sort of code to make the script stop and now it is sending ...
4
votes
3answers
2k views
PHP: What does pcntl_fork() really do?
PHP's pcntl_fork funcion is supposed to fork a process just as the standard fork function in C.
But I was wondering if this function really forks the process or if it emulates that behavior in a ...
3
votes
4answers
1k views
Bash: a sleep in a while loop gets its own pid
I have a bash script that does some parallel processing in a loop. I don't want the parallel process to spike the CPU, so I use a sleep command. Here's a simplified version.
(while true;do sleep ...
2
votes
1answer
67 views
ruby creating processes and reading output
I want to create multiple processes (each with cmd + arguments).
I need the pid of the created process so I can kill it if needed.
I also want to be able to read its output (line-by-line) in a ...
1
vote
2answers
148 views
How to unit test PCNTL forker class in PHP?
I have an abstract PHP class that is responsible for doing process forks and also detaching the current process from terminal and continue as deamon.
I really would like to get tips about how to unit ...
1
vote
3answers
299 views
BASH shell process control - any other examples of controlling/scheduling work
I've inherited a medium sized project in which the main (batch) program is fed work through a large set of shell scripts that do a lot of process control (waiting for process to complete, sleeping, ...
0
votes
0answers
22 views
Missing Exception in Boost Process
I want to use Boost Process eventhough it has not been release yet. I did
svn co svn://svn.boost.org/svn/boost/sandbox/process/ boost-process
added boost-process to include path (-I) and #included ...
0
votes
1answer
64 views
ulimit returns 0 as exit status… how to get 1 if process killed?
I'm writing a shell script that called some programs that can use up all resources and effectively kill a machine. I must prevent this some happening.
My idea was to use ulimit to set resource limits ...
0
votes
0answers
50 views
Help with implementing job control
For my next to last project in Systems Programming, we have to come up with a simple shell program that has two built in functions and runs jobs in the background. So far, I have the first part ...
0
votes
2answers
137 views
What are the side-effects of enabling PROCESS CONTROL (PCNTL) in PHP on web server environment?
below is a quotation from http://www.php.net/manual/en/intro.pcntl.php
Process Control should not be enabled within a web server environment and unexpected results
may happen if any Process ...
0
votes
1answer
130 views
Seeking good source of FOSS graphics/components for Process Control/Scada
I want some whizz-bang browser graphics to impress management - for SCADA/process control. Until now I have been worrying about which technology - to SilverLight or not to SilverLight?
But, really, ...
0
votes
2answers
130 views
Web-based or PC based for process control application?
I want to create a process control application. Events update the database and that should be reflected on the GUI.
Although I personally prefer Linux, the hard fact it that 100% of the potential ...