Top "Process" questions

This tag is about operating system processes.

How to get the start time of a long-running Linux process?

Is it possible to get the start time of an old running process? It seems that ps will report the …

linux bash process
How to use [DllImport("")] in C#?

I found a lot of questions about it, but no one explains how I can use this. I have this: …

c# process dllimport
Maximum number of processes in linux

What is the maximum limit to the number of processes possible in a linux system? How can we find it ?

linux process operating-system
How do I get the path of a process in Unix / Linux

In Windows environment there is an API to obtain the path which is running a process. Is there something similar …

linux unix process path environment
top -c command in linux to filter processes listed based on processname

top -c Top lists all the processes, there are good options to filter the processes by username by using the …

linux unix process top-command
Kill some processes by .exe file name

How can I kill some active processes by searching for their .exe filenames in C# .NET or C++?

c# c++ process exe kill-process
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? …

java process
How to get child process from parent process

Is it possible to get the child process id from parent process id in shell script? I have a file …

linux shell process child-process
Killing a process using Java

I would like to know how to "kill" a process that has started up. I am aware of the Process …

java process
How to make child process die after parent exits?

Suppose I have a process which spawns exactly one child process. Now when the parent process exits for whatever reason (…

c linux unix process fork