Tagged Questions
instance of a computer program being executed in the context of an operating system
36
votes
11answers
20k views
Threads vs Processes in Linux
I've recently heard a few people say that in Linux, it is almost always better to use processes instead of threads, since Linux is very efficient in handling processes, and because there are so many ...
26
votes
9answers
14k views
What is the best choice for .net inter-process communication?
Should I use Named Pipes, or .NET Remoting to communicate with a running process on my machine?
20
votes
7answers
4k views
Windows Forms application like Google Chrome with multiple processes
Is there any way to use C# to build a container application where each tab is actually its own process like with Google chrome?
20
votes
3answers
6k views
Starting a process with inherited stdin/stdout/stderr in Java 6
If I start a process via Java's ProcessBuilder class, I have full access to that process's standard in, standard out, and standard error streams as Java InputStreams and OutputStreams. However, I ...
17
votes
7answers
5k views
How do I automatically destroy child processes in Windows?
In C++ Windows app, I launch several long running child processes (currently I use CreateProcess(...) to do this.
I want the child processes to be automatically closed if my main processes crashes ...
17
votes
8answers
14k views
How do you find the age of a long-running Linux process?
I have a problem with some zombie-like processes on a certain server that need to be killed every now and then. How can I best identify the ones that have run for longer than an hour or so?
15
votes
4answers
1k views
Significance of Sleep(0)
I used to see Sleep(0) in some part of my code where some infinite/long while loops are available. I was informed that it would make the time-slice available for other waiting processes. Is this true? ...
14
votes
4answers
8k views
How to read command line arguments of another process in C#?
How can I obtain the command line arguments of another process?
Using static functions of the System.Diagnostics.Process class I can obtain a list of running processes, e.g. by name:
Process[] ...
13
votes
4answers
5k views
Check if pid is not in use in Python
Is there a way to check to see if a pid corrosponds to a valid process? I'm getting a pid from a different source other than from os.getpid() and I need to check to see if a process with that pid ...
12
votes
7answers
10k views
How do you spawn another process in C?
How do you run an external program and pass it command line parameters using C? If you have to use operating system API, include a solution for Windows, Mac, and Linux.
12
votes
6answers
1k views
Anyone Using Executable Requirements?
In my limited experience with them executable requirements (i.e. specifying all requirements as broken automated tests) have proven to be amazingly successful. I've worked on one project in which we ...
11
votes
4answers
230 views
Collaborating on websites with relational databases and a CMS
What processes do you put in place when collaborating in a small team on websites with databases?
We have no problems working on site files as they are under revision control, so any number of our ...
11
votes
4answers
579 views
How to do background processing similar to that on stackoverflow? [closed]
I know that stackoverflow uses asp.net mvc but how they do background process (ie) processing a recent user updates,badges etc.... How to get started with background processing in asp.net mvc... ANy ...
11
votes
3answers
2k views
How do I tell what a Linux process is waiting for?
I'm trying to track down the cause of performance bottlenecks in an application I'm debugging under Linux. The various processes involved seem to spend a lot of their time blocking on I/O requests, ...
11
votes
6answers
8k views
How can a Win32 process get the pid of its parent?
I'm currently passing the pid on the command line to the child, but is there a way to do this in the Win32 API? Alternatively, can someone alleviate my fear that the pid I'm passing might belong to ...
10
votes
3answers
1k views
Mac OS X: Can one process render to another process's window?
Greetings!
I'm currently porting a web browser plugin from Win32 to MacOSX. One of the features of the plugin is that when the plugin is loaded, it spawns a separate process that serves as the ...
10
votes
6answers
7k views
Is there a way to detach matplotlib plots so that the computation can continue?
After these instructions in the Python interpreter one gets a window with a plot
from matplotlib.pyplot import *
plot([1,2,3])
show()
# other code
Unfortunately, I don't know how to continue to ...
10
votes
4answers
17k views
How to get a list of current open windows/process with Java?
Does any one know how do I get the current open windows or process of a local machine using Java?
What I'm trying to do is: list the current open task, windows or process open, like in Windows ...
10
votes
13answers
536 views
Senior Developers and Unit Tests - Required? Are they allowed to use lackeys? [closed]
Should senior developers be exempt from unit testing - or should they be allowed to use lackeys to implement them? What's the best way to motivate people who are not used to using unit testing ...
10
votes
7answers
5k views
What's the best way to duplicate fork() in windows?
How do I implement some logic that will allow me to duplicate the functionality on windows that I have on linux with fork() using python?
I'm specifically trying to execute a method on the SAPI Com ...
9
votes
3answers
245 views
Erlang ETS tables versus message passing: Optimization concerns?
I'm coming into an existing (game) project whose server component is written entirely in erlang. At times, it can be excruciating to get a piece of data from this system (I'm interested in how many ...
9
votes
3answers
519 views
Two processes reading/writing to the same file Python
I have one process who's reading from a file (using file.read()) and one process who's writing to the same file (file.write()). The problem is it doesn't work - I get no errors but they can't operate ...
9
votes
4answers
3k views
Launching process in C# Without Distracting Console Window
I figure out how to launch a process. But my problem now is the console window (in this case 7z) pops up frontmost blocking my vision and removing my focus interrupting my sentence or w/e i am doing ...
9
votes
10answers
736 views
What are some project management tips and processes for a single-developer team?
I usually have some project that I can do alone that take around 6 months to 1 year. I always try to have some "release" date and write few documentations (external to the code).
My question is, what ...
9
votes
7answers
11k views
How do you check in Linux with Python if a process is still running?
The only nice way I've found is:
import sys
import os
try:
os.kill(int(sys.argv[1]), 0)
print "Running"
except:
print "Not running"
(Source)
But is this reliable? Does it ...
8
votes
4answers
292 views
What Happens When I Call fork() in Unix?
I've tried to look this up, but I'm struggling a bit to understand the relation between the Parent Process and the Child Process immediately after I call fork().
Are they completely separate ...
8
votes
2answers
968 views
Portable C++ library for IPC (processes and shared memory), Boost vs ACE vs Poco?
I need a portable C++ library for doing IPC. I used fork() and SysV shared memory until now but this limits me to Linux/Unix. I found out that there are 3 major C++ libraries that offer a portable ...
8
votes
4answers
194 views
What makes a process appear as Not responding in Windows?
What is it exactly that "triggers" Windows to mark a process as Not responding in the Task Manager and Resource Monitor?
8
votes
3answers
2k views
linux: programmatically get parent pid of another process?
I tried google, but found getppid() which gets the parent pid of the current process.
I need something like getppid(some_other_pid), is there such a thing? Basically takes the pid of some process and ...
8
votes
6answers
7k views
How can I set the process-name for a Java-program?
If a Java-program is started, it get's in the system process-monitor the name java. Many Java-programs are that way hard to distinguish. So it would be nice, if a way exists, to set the name, that ...
8
votes
3answers
676 views
low level programming: How does the OS start a new thread/process?
Whenever the bootloader loads the operating system there is presumably only ONE program flow active, right? This would mean, one processor holds the instruction pointer and executes the commands it ...
8
votes
4answers
790 views
How does Google Chrome control/contain multiple processes?
How does Google Chrome command and control multiple cross platform processes and provide a shared window / rendering area?
Any insights?
7
votes
2answers
696 views
how to change process name of python script running on windows machine
Windows Task Manager (Processes Tab) lists all the running processes.
the image name for python scripts is always python.exe (or pythonw.exe or the name of the python interpreter).
it there a nice ...
7
votes
2answers
6k views
Intercepting stdout of a subprocess while it is running
If this is my subprocess:
import time, sys
for i in range(200):
sys.stdout.write( 'reading %i\n'%i )
time.sleep(.02)
And this is the script controlling and modifying the output of the ...
7
votes
13answers
694 views
Process to pass from problem to code. How did you learn?
I'm teaching/helping a student to program.
I remember the following process always helped me when I started; It looks pretty intuitive and I wonder if someone else have had a similar approach.
Read ...
6
votes
3answers
272 views
Linux: can I read the output of another process without using any IPC (pipes, etc.)?
Is it possible in linux to somehow read the output (from stdout and stderr) of another process without it knowing about it? So lets say I have a process A running in the background and process B wants ...
6
votes
3answers
206 views
Code Design Process?
I am going to be working on a project, a web application. I was reading 37signals getting real pamphlet online (http://gettingreal.37signals.com/), and I understand the recommended process to build ...
6
votes
3answers
2k views
How to run processes piped with bash on multiple cores?
I have a simple bash script that pipes output of one process to another. Namely:.
dostuff | filterstuff
It happens that on my Linux system (openSUSE if it matters, kernel 2.6.27) these both ...
6
votes
9answers
4k views
How to check if a file has been opened by another application in C++
I know, that there's the is_open() function in C++, but I want one program to check if a file hasn't been opened by another application - is there any way to do it using standard library?
EDIT - ...
6
votes
9answers
5k views
Java: Executing a Java application in a separate process
Can a Java application be loaded in a separate process using its name, as opposed to its location, in a platform independent manner?
I know you can execute a program via ...
Process process = ...
6
votes
7answers
2k views
A process command in top
The problem comes up when you run couple of python scripts. in top at command, it shows only 'python' with these scripts. How to rename a process or otherwise tag it so that I could tell them apart in ...
6
votes
2answers
583 views
Can two processes render to one OpenGL canvas?
I have three different processes running on the same machine. One of them owns an OpenGL window. I would like the other two to be able to render (quickly) to different rectangular portions of the ...
6
votes
1answer
3k views
Are child processes created with fork() automatically killed when the parent is killed?
I'm creating child processes with fork() in C/C++.
When the parent process ends (or is killed for some reason) I want all child processes to be killed as well.
Is that done automatically by the ...
6
votes
4answers
342 views
How does one deal with backdoor code changes?
Scenario
I admit (somewhat shamefully) that I have not only witnessed this particular practise, but I have also committed it myself. My name is Jeff and I have gamed a quality process to get my way. ...
6
votes
2answers
5k views
Inside a batch file, how can I tell whether a process is running?
I'd like to write a batch file that checks to see if a process is running, and takes one action if it is, and another action if it isn't.
I know I can use tasklist to list all running processes, but ...
6
votes
2answers
1k views
Tabs in their own process with C# and WinForms [closed]
Possible duplicate
Windows Forms application like Google Chrome with multiple processes
Chrome / IE8 multi-process design, is it possible in .NET?
Sample for Multi-process C# app like Google ...
6
votes
3answers
1k views
How do I programmatically use the “using” keyword in C#?
I have some System.Diagnotics.Processes to run. I'd like to call the close method on them automatically. Apparently the "using" keyword does this for me.
Is this the way to use the using keyword?
...
6
votes
9answers
916 views
Do you follow the Personal Software Process? Does your organization/team follow the Team Software Process?
For more information - Personal Software Process on Wikipedia and Team Software Process on Wikipedia.
I have two questions:
What benefits have you seen from
these processes?
What tools and/or
...
5
votes
4answers
302 views
How to use more DOS commands in C#
I have about 7 commands in DOS and I want to run them in my C# program. Can I do:
System.Diagnostics.Process.Start("cmd.exe", "my more commands here");
?
EDIT:
I'm making small app what will run ...
5
votes
1answer
125 views
How to redirect the STD-Out of an **existing** process in C#
I can easily start a process with it's STD I/O redirected but how can I redirect the STD I/O of an existing process.
Process process = Process.GetProcessById(_RunningApplication.AttachProcessId);
...