process Questions
2
Solved
I am looking for some tool that will dump total disk I/O by a single process after it ends.
So far my finding is :-
iotop= It shows i/o per process in real time but does not give
total after proc...
1
I have written a small executable to start a WebSocket server for a Node development environment.
In a separate NodeJS application (running in Electron), I am using child_process.spawn() to run the...
3
When setting a process, it seems like I'm not using that variable, WorkingDirectory, in the proper manner. I get the error (with a catch)
ApplicationName='Test.exe', CommandLine='/d=1',
CurrentDir...
6
Solved
I am trying to get another process' command-line parameters (on WinXP 32bit).
I do the following:
hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ | PROCESS_TERMINATE, FALSE, Proc...
Instantly asked 30/6, 2011 at 6:4
2
Solved
what is the main difference between File-backed mapping & Anonymous
mapping.
How can we choose between File-backed mapping or Anonymous
mapping, when we need an IPC between processes.
W...
7
Solved
I am using Runtime.getRuntime().exec() command to start a batch file which in turn starts another process for windows platform.
javaw.exe(Process1)
|___xyz.bat(Process2)
|___javaw.exe(Process3)
...
Drainage asked 12/4, 2012 at 13:12
5
Solved
What is the difference between a Windows service and a Windows process?
3
Solved
I tried to run my express app with port 5000, and I found that some processes are already using it:
↳ lsof -i :5000
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
ControlCe 1677 user 32u IPv4 0...
2
Solved
How to find all tcp connections opened by specific application, maybe by process id or smth. like this? I use C#
Bagwig asked 22/8, 2011 at 9:21
4
When I start my tcp server from my bash script, I need to kill the previous instance (which may still be listening to the same port) right before the current instance starts listening.
I could us...
Hanzelin asked 27/7, 2013 at 5:48
2
Solved
I am aware of the difference between a process running in user mode and one running in kernel mode (based on access restrictions, access to hardware etc.). But just out of curiosity, what is the di...
Cephalic asked 1/3, 2010 at 5:57
5
I want to start a .net core application from an API that I created which is also in .Net Core too.
I added UseUrls() function to Program.cs file so it will use a port that i want it to use. So her...
Profiteer asked 29/6, 2018 at 13:29
3
Solved
I am a developer and I need to run my ruby app at port 5000, but always I try to run my app I get:
Address already in use - bind(2) (Errno::EADDRINUSE)
I know that the easiest way for solving this...
Cabinda asked 24/5, 2022 at 20:51
9
Solved
I'm new in linux and I'm building a program that receives the name of a process, gets its PID (i have no problem with that part) and then pass the PID to the kill command but its not working. It go...
8
Starting multiple threads and having each exec() then destroy() a running java process result in some of the process not being destroyed and still running after program exit. Here is some code that...
Wanderlust asked 7/8, 2013 at 21:14
10
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 9631/node
How do I kill this process in linux(ubuntu)?
7
Solved
I am trying to get an integration test working. In the test initialization phase I attempt to spin up a Redis server from a docker image.
var p = new Process { StartInfo = new ProcessStartInfo("do...
Velure asked 5/12, 2018 at 20:42
11
Solved
Can I change effective process name of a Python script? I want to show a different name instead of the real name of the process when I get the system process list. In C I can set
strcpy(argv[0],&qu...
2
In golang, I can usually use context.WithTimeout() in combination with exec.CommandContext() to get a command to automatically be killed (with SIGKILL) after the timeout.
But I'm running into a str...
4
Solved
What would be the best way to kill all the processes of a parent but not the parent? Let's say I have an undetermined number of child processes that I've forked and on a given alarm, in my signal h...
10
Solved
I have service named WinDefend and it runs on process svchost.exe
There other many svchost.exe processes and I need to find a way to get its ID.
when I run tasklist /svc I can see:
I am not sure ...
Zig asked 12/10, 2014 at 23:47
2
Solved
I want to kill a job. First, I need it's process Id, so I execute:
get-process
And I get a boatload of processes. OK, I just want one particular process, so I use:
get-process | select-string -pat...
Brimstone asked 5/3, 2021 at 18:32
4
1.When I in Fragment onCreateView method inflater.inflate(webview_layout, container, false) on Android 9 may Crash with blow log:
Fatal Exception: java.lang.RuntimeException:Using WebView from ...
71
Solved
I keep getting this error during the build of my VS2012 C# project
Error 41 Could not copy "obj\Debug\WeinGartner.WeinCad.exe" to
"bin\Debug\WeinGartner.WeinCad.exe".
Exceeded retry count of 10...
Astyanax asked 7/8, 2013 at 12:1
11
Solved
I am looking for a process by the name of "MyApp.exe" and I want to make sure I get the process that is owned by a particular user.
I use the following code to get a list of the processes:
Proce...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.