Top "Process" questions

This tag is about operating system processes.

What are the differences between kill process and close process?

When I start a process and want to close this process, what are the differences between Process.Close() and Process.…

c# process
Get return value from process

Hi I am trying to do the following: I have a process which can take parameters (digits) and return the …

c# process
Is there a memory limit for a single .NET process

We are currently thinking of building a cache-system to hold data pulled out of an SQL database and make it …

.net memory .net-3.5 process limit
start gdb using a pid

In general i see the process's pid which is running in the background and start dbx on that process using …

c process gdb dbx
How to execute process on remote machine, in C#

How can I start a process on a remote computer in c#, say computer name = "someComputer", using System.Diagnostics.Process …

c# process system.diagnostics
Threads & Processes Vs MultiThreading & Multi-Core/MultiProcessor : How they are mapped?

I was very confused but the following thread cleared my doubts: Multiprocessing, Multithreading,HyperThreading, Multi-core But it addresses the queries …

multithreading process multicore
Is there a way to change effective process name in Python?

Can I change effective process name of a Python script? I want to show a different name instead of the …

python process arguments hide ps
When must a signal be inserted into the sensitivity list of a process

I am confused about when a signal declared in an architecture must be inserted into the sensitivity list of a …

process vhdl
Start script after another one (already running) finishes

So I have a process running, and it will take several hours to complete. I would like to start another …

linux bash process
how to exit a child process - _exit() vs. exit

Consider this code snippet: pid_t cpid = fork(); if (cpid == -1) { perror("fork"); exit(EXIT_FAILURE); } if (cpid == 0) { // in child …

c process fork