Category "process"

How to read into a running processus in c?

Hi how to read into a processus and how to use IMAGE_FILE_HEADER to read the pe header in this processus, thanks for replies:) sorry for my english i'm french

Can two processes running simultaneously share a variable?

Newbie here, I recon this may be a very foolish question. I am simultaneously running on cuda, in two distinct processes, a simple 3-layer MLP neural network ov

What does npm run do?

The command npm run will run the command which I set in the package.json, and I think it does not new a child process to run the command. What does npm do to ru

Get screenshots of other running apps on android

On Android I can get list of running applications by executing getRunningAppProcesses on activity manager: ActivityManager am = (ActivityManager)getSys

Question about sharing mmapped area between 2 different processes

I'm trying to share mmapped area in 2 processes. In my program, I create memory_update() process and memory_read() process. This memory_update() process update

What is the difference between kill and kill -9?

Can anyone explain the difference between kill and kill -9. Thanks in advance.

Node.js: Killing sub processes of ChildProcess#spawn

Consider the following code: import {spawn, exec} from 'child_process'; var child = spawn('su', [process.env.USER, '-c', 'while (true); do sleep 0.3; echo

Does user level threads take advantage of multiprocessing?

Does user level threads take advantage of multiprocessing ? I read one such answer here. But, it's not clear though. What does it mean by "user threads cannot

How to kill a nodejs process in Linux?

tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 9631/node How do I kill this process in linux(ubuntu)?

How to know the process id of current bash session? [duplicate]

I'm on a linux server and admin user. There're many admin users using this machine at the same time. So under current bash command line, how t

launch an exe/process with stdin stdout and stderr?

With C++ how do i launch an exe/process with stdin stdout and stderr? I know how to do this in .NET and i remember using popen in the past but popen seems to al

How to get the error message of a Process?

For vsinstr -coverage hello.exe, I can use the C# code as follows. Process p = new Process(); StringBuilder sb = new StringBuilder("/COVERAGE "); sb.Append("

How to stop process from .BAT file?

So I have process I started from one bat file. How to stop it from another?

How to stop process from .BAT file?

So I have process I started from one bat file. How to stop it from another?