Questions tagged [process-management]

Process management is the ensemble of activities of planning and monitoring the performance of a process. The term usually refers to the management of business processes and manufacturing processes. Business process management (BPM) and business process reengineering are interrelated, but not identical.

Process management is the application of knowledge, skills, tools, techniques and systems to define, visualize, measure, control, report and improve processes with the goal to meet customer requirements profitably. It can be differentiated from program management in that program management is concerned with managing a group of inter-dependent projects. But from another viewpoint, process management includes program management. In project management, process management is the use of a repeatable process to improve the outcome of the project.

153 questions
0
votes
1 answer

How to communicate between two process in python

I am using windows 7 and python 2.7 There is process-A. process-B which is launched through custom url. My app starts through process-A and it opens a webpage in browser. This page does necessary authentication of user and this finally redirect to…
imp
  • 1,967
  • 2
  • 28
  • 40
0
votes
2 answers

How Linux manages and keeps track of the physical memory pages?

I am asking about Data structures used in the following: I am wondering how linux tracks all the physical pages. I am not worried about how it keeps the vm_area_struct. What is the data structure used to store all of them? And how it looks up a…
0
votes
1 answer

What signal is passed to child process on terminating main program?

On a Windows 7 machine:- I have a main (Python) program that I start on a command prompt [main process]. This program spawns a child (Python) program [child process]. I close the command prompt. Result:- Child process ends immediately. On the…
Barun Sharma
  • 1,452
  • 2
  • 15
  • 20
0
votes
2 answers

How do I develop a system of checks and balances for coders

How do I Get multiple developers working on the same wordpress blog or the same code for another type of website Be able to preview those changes Have control over which and who's changes are implemented Have the ability to undo the changes if…
0
votes
1 answer

process nodejs data with php and goback

actually i have a WORKER.PHP that recieve some post variables and a zip file with a 10k+ data row (csv) then insert the tiny result on mysql, on the other side i have a main page with an ajax call every 5 seconds to a secondary php script than just…
Colas
  • 157
  • 1
  • 2
  • 12
0
votes
2 answers

Bash: How do I keep N programs running, restarting all if one fails?

Greg's Wiki has this very simple example of how to keep a server running s.t. if it exits, it is instantly restarted: #!/bin/sh while :; do /my/game/server -foo -bar -baz >> /var/log/mygameserver 2>&1 done But how about where you want to keep N…
unhammer
  • 4,306
  • 2
  • 39
  • 52
0
votes
2 answers

Disregard changes to a product description when retrieving order records

The title is somewhat hard to understand, so here is the explanation: I am building a system, that deals with retail transactions. Meaning - purchases. I have a database with products, where each product has an ID, that is also known to the POS…
Janis Peisenieks
  • 4,938
  • 10
  • 55
  • 85
0
votes
1 answer

How can I kill a process with a long name using tskill?

(Answering my own question for the future / others). I have a process I'd like to kill by name (in my case from an InnoSetup from Pascal script). My issue is that my process is called MyVeryLongProcessName.exe and I don't have access to taskkill…
Duncan
  • 858
  • 1
  • 11
  • 29
0
votes
1 answer

In a machine using 16 bit addresses and page size is 512 addresses, what's the maximum size for a process that executes?

Since its 16 bit addresses and page size of 512 addresses, I think that makes the page offset 9 bits (512 is 29) and the number of pages is 216 - 29 = 27. What is the maximum size for a process that executes on this machine without the use of page…
KateMak
  • 1,619
  • 6
  • 26
  • 42
0
votes
3 answers

Low Friction Minimal Requirements Gathering

How can our team gather requirements from our "Product Owner" in as low friction yet useable of a way as possible? Now here's the guidelines- No posts that it can't be done or that the business needs to make a decision that it cares about quality,…
Justin Bozonier
  • 7,584
  • 9
  • 44
  • 46
0
votes
1 answer

Broadcast message for all processes to exit(MPI)

[MPi-C++] I made an application that under a specific condition it should close the application in all processes. I tried to made it using root process but I want to send message to all other processes to terminate also. How can I make this???
0
votes
4 answers

Never do anything until you ready to use it, in software too? [Toyota principle]

I was listening to a podcast. Where they talked about principles Toyota was using: Never do anything until you are ready to use it. I think this tells us to look in other places, to learn what other practices have been known for years.
Flinkman
  • 17,732
  • 8
  • 32
  • 53
0
votes
1 answer

Manage multiple instances of a process automatically

I have a program that takes about 1 second to run and takes a file as input and produces another file as output. Problem is I have to be able to process about 30 files a second. The files to process will be available as a queue (implemented over…
djechlin
  • 59,258
  • 35
  • 162
  • 290
0
votes
1 answer

Python/Windows/ctypes: How to get process return status after calling WaitForMultipleObjects?

I have the same use case as this guy, and I really like this answer except that I have one extra requirement: I need to get the return status from the child process. Here's my attempt at modifying his program. I'm a tourist in Windows-land and…
Josh Haberman
  • 4,170
  • 1
  • 22
  • 43
-1
votes
1 answer

Entry point of Minix's processes

I'm studying Operating Systems and, of course, Minix 3. Can someone tell me which file and line of code in Minix 3 are the entry points of: Kernel; Process Manager; Memory Manager; Virtual Memory Manager; Any Device Driver. Any of above will help…
1 2 3
10
11