Skip to main content

Questions tagged [process]

This tag is about operating system processes. It may also refer to a specific construct on a given platform, e.g., the System.Diagnostics.Process class for .NET

process
0 votes
1 answer
10 views

Folder approval in power automate flow

The aim of my flow is to limit the creation of folders to selected users only. I am exploring the use of when an item is created properties only and a condition to state isfolder equals true. I then ...
PinkApple's user avatar
-2 votes
0 answers
12 views

Validation to Jenkins/Ansible framework

I am handling patching through a combination of Jenkins and ansible. Jenkins calls ansible scripts for each tool and performs stop and start before the patching scripts. What is the best way to add ...
real_name_hidden's user avatar
0 votes
0 answers
13 views

Explain the behavior of parent and child processes

So, recently I have been learning about processes, operating systems, etc. I have come across a problem that I simply can't wrap my head around. Here is the code to the said problem #include <stdio....
sampath sai charan's user avatar
1 vote
1 answer
27 views

What causes inter-process communication to take millions of cycles?

In the best case, Inter-process communication is obviously slower than communication between threads, as threads share resources, such as the heap. However, why is inter-process communication several ...
EarthenSky's user avatar
0 votes
0 answers
25 views

How to know where a process was launched on macOS when the parent is launchd? [closed]

Someone has accessed my computer and inserted a piece of code in it, which seems to run commands periodically. I know the process he launched, but I can't figure out where exactly it's running. I ...
gravlax's user avatar
  • 41
0 votes
0 answers
23 views

Enabling Efficiency Mode (EcoQoS) for a Process by PID in C++ and Verifying in Task Manager

I'm trying to enable Efficiency Mode (EcoQoS) for a process given its process ID (PID). I have referred to this similar question on Stack Overflow, but I'm still facing issues. Issue: Although the ...
Shivam's user avatar
  • 52
0 votes
0 answers
9 views

.NET solution that uses third party hardware and DLLs

My team and I are writing a .NET application to run in a Windows environment. We will be using hardware from four-ish different vendors, that each comes with their own dll (the term is unmanaged dlls, ...
Nikolaj Eriksen's user avatar
0 votes
0 answers
61 views

Reading & Writing other process's STD handles in python

I am trying to use Pywin32 to get the STD handles of another process, then read and write to them. My source code is: import win32api import win32con import win32file STD_INPUT_HANDLE = -10 ...
user0's user avatar
  • 59
0 votes
0 answers
57 views

Is there a way to write an image to memory with Python and read it from another application written in C++?

I would like to create and write an image to the memory in such a way that other processes are able to read it. The goal is to have a Python script create some graph using matplotlib.pyplot, write it ...
Falesz's user avatar
  • 17
0 votes
0 answers
17 views

How to avoid races with process IDs when reading /proc

As I understand it, on Linux process IDs are reused, and also the only API for a lot of process-related stuff (e.g. finding child processes of a specific process) is /proc/<pid>/.... But don't ...
Timmmm's user avatar
  • 93.6k
0 votes
0 answers
26 views

Independent socket.io servers on separate child processes [duplicate]

I've been working with express and socket.io, and have successfully created two different apps that serve clients from a domain. So now I'm interested in having the main page for my domain be a portal ...
hmathers's user avatar
0 votes
1 answer
63 views

When a user process swaps out a page, is the virtual address of the page in user space or kernel space?

I am a beginner in Linux and have always been confused about the difference between kernel space and user space. I am currently researching memory management and would like to know if the virtual ...
Mia8Cew's user avatar
0 votes
1 answer
37 views

Why is it I don't get pwd result from this dart code?

I'd like to get the result of my command line 'pwd' from my Dart console program. I wait for the process to start, install the listeners and wait for the task to complete. I don't get the result ...
Stéphane de Luca's user avatar
0 votes
0 answers
10 views

Empty Output When Trying to Launch Kali Linux Through WSL Using C# CMD

I am facing an issue while attempting to launch Kali Linux through Windows Subsystem for Linux (WSL) using C# code. The problem arises when I try to run commands in Kali Linux through WSL, and the ...
MGhassar's user avatar
  • 105
0 votes
1 answer
58 views

Open a Visible Cmd Window In Java

I currently have some code that executes a task: this.cmds = new String[] { "cmd.exe", "/c", customCmd }; ProcessBuilder pb = new ProcessBuilder(cmds); try { pb.start(); } ...
Benna's user avatar
  • 5

15 30 50 per page
1
2 3 4 5
1222