The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
137 views

JIRA implementation for process control and scrum

I am reviewing JIRA for possible use within several development teams at the company I work for. We use Scrum as a base for our project management. We have good, self-organizing teams, almost no ...
3
votes
1answer
70 views

Run sampling process for certain amount of time and return value in Java

I have a Java method that does sampling. That is, it does something like this: TIME = 60 /* seconds */ startTime = now(); count = 0; while (now() - startTime < TIME) { sample = ...
1
vote
1answer
160 views

Using a PID controller to manage resources in programs

I was wondering if there is a precedent for using PID controller type mechanisms to manage computation resources (see http://en.wikipedia.org/wiki/PID_controller). By computational resources I mean: ...
0
votes
1answer
612 views

PNCTL not enabled in php even after compiling

I just compiled my PHP with --enable-pcntl, but when I try to access the process control functions in PHP, I get: Fatal error: Call to undefined function pcntl_fork() Am I missing something? My ...
0
votes
1answer
654 views

Storing and retrieving process control block

My understanding is that, when a process is in execution, the contents of the PCB(which is in kernel memory space ?) are loaded onto the CPU registers, and Status registers, Kernel Stack Pointers, ...
0
votes
1answer
818 views

semaphore initialization

I have a semaphore that I tried to change the value of and it fails. After reading the man page I learned that if the value is less than 0 and you use SETVAL it will fail (I wasn't initializing it). ...
1
vote
1answer
244 views

Is there a java analog to supervisord

I am writing a distributed system in which jobs (processes) will be run on multiple nodes (LINUX machines). I want to be able to launch job on these machines, terminate a job (kill), monitor what is ...
-1
votes
1answer
208 views

How to get top 'n' CPU consuming processes in particular time interval by performance monitor or any other utility?

I am using windows 2000 server. I want to know top 5 processes that consume most CPU at particular time. I am using performance monitor for this purpose. But the problem is in performance monitor ...
1
vote
2answers
445 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 ...
2
votes
1answer
186 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 ...
5
votes
3answers
346 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 ...
0
votes
1answer
186 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 ...
1
vote
2answers
323 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 ...
0
votes
2answers
307 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 ...
1
vote
3answers
642 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, ...
4
votes
5answers
3k 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 ...
0
votes
1answer
199 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
191 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 ...
6
votes
4answers
5k 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 ...
9
votes
2answers
1k 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), ...
11
votes
4answers
4k 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 ...
16
votes
4answers
14k 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 ...