In computing, the process identifier (normally referred to as the process ID or just PID) is a number used by most operating system kernels (such as that of UNIX, Mac OS X or Microsoft Windows) to (temporarily) uniquely identify a process. This number may be used as a parameter in various function ...
-1
votes
0answers
16 views
PID Controller for DC Motor Duty Cycle Using Verilog [closed]
I'm trying to work on a project where I'm coding a pid controller to control the duty cycle of a DC Motor using pulse-width modulation. I understand the general concept of a pid controller, but I'm ...
1
vote
0answers
31 views
Balancing robot PID tuning
I'm trying to build a two-wheeled balancing robot for fun. I have all of the hardware built and put together, and I think I have it coded as well. I'm using an IMU with gyro and accelerometers to find ...
0
votes
1answer
14 views
netstate -lput doesn't show the pid of deamon that is listening on port:8080?
I runed:netstat -lputn to find ount which program is listening on port 8080,but got blow output:
As you can see no pid or program name got shown,why?
0
votes
0answers
37 views
Reading from FIFO(named pipe) in While loop without body
im trying to make a tic tac toe game with server-client in c.
On the server side i have to read from FIFO(named pipe) 2 pids.
so i made a loop that run until the read (from fifo) return value ...
1
vote
1answer
24 views
How to get the PID of matlab when using the MATLAB Engine?
When using the MATLAB Engine interface, how can I get the process ID of the matlab process that is started? Or how can I launch the matlab process in a way that would allow me to also get the PID?
...
0
votes
2answers
34 views
Storing PID of the script which is being called by another script
I am a total newbie with shell scripting and have been trying write some and get my simple application running. Although I am able to start the application, I cant stop or restart it, because it is ...
0
votes
1answer
50 views
Is it possible to get the launch time of PID?
I have a code that is floating around here for a while (the code is working for me):
- (NSArray *) runningProcesses {
//CTL_KERN,KERN_PROC,KERN_PROC_ALL
int mib[4] = {CTL_KERN, KERN_PROC, ...
0
votes
0answers
47 views
Finding PID of a process which is being debugged with eclipse
I want to find a PID of a process which is being debugged with eclipse, while it is being debugged.
I want to use some c plus plus code that does not have any relation with the debugged process.
For ...
-1
votes
0answers
61 views
How to get the complete list of running process in C Unix [duplicate]
How can I get a list (in a array or something) of pids from all current process in C Unix.
Thanks you.
0
votes
1answer
61 views
C++ Linux: Process PID from its path
I'm searching a way to get the current PID of a process having its path.
For example I know that the path firefox is /usr/bin/firefox, I have launched it and I would like to find its PID in C++.
How ...
0
votes
2answers
37 views
Reserved Process ID [closed]
As per my knowledge Process ID 1 is reserved for init.
What does process id 2 indicate? why no softlink to the binary executable for this process ID.
sudo ls -l /proc/1/exe
lrwxrwxrwx 1 root ...
0
votes
0answers
21 views
Explanation about fork() call
#include <stdio.h>
#define N 3
int pid[N];
void main() {
int i;
for(i=0;i<N;i++)pid[i]=0;
for(i=0;i<N;i++)pid[i]=fork();
for(i=0;i<N;i++)printf("%d ", pid[i]);
}
The ...
-1
votes
0answers
35 views
Can Python convert a PID into a process object?
My goal is to be able to manage my Minecraft server from any ssh session or terminal. For those of you not familiar, Minecraft's server is a .jar file. I've currently got a Python script which can ...
-1
votes
0answers
40 views
Any external tool to get PID of some program directly in Linux?
I know I can use tools like pgrep or ps. but in some cases the program is so little that I don't have enough time to use command like pgrep foo before it exits.
So is there any tool to get the ...
2
votes
1answer
91 views
How can I fetch each part from An Erlang Pid?
pid(A, B, C) can generate a pid <A.B.C>, how can I get A, B and C from a pid?
-2
votes
0answers
34 views
JVM Crashing… A lot [closed]
I have been getting LOTS of java crashes. From both my MineCraft Server (I realize this is not the place to ask about that) At first I thought it was my server... then I tried java programming as I ...
0
votes
0answers
29 views
Upstart monitoring problems in ubuntu and creating a pid
I was looking for how to create a pid file for monitoring of upstart processes in ubuntu. I looked at the accepted answer in Ubuntu, upstart, and creating a pid for monitoring and ended up with ...
-2
votes
1answer
69 views
how to move the process in foreground [duplicate]
I write similarity of the command bash interpreter.
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include ...
1
vote
1answer
936 views
Restarting nginx: nginxnginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
When I try to restart nginx with sudo /etc/init.d/nginx restart I get the message from the subject.
I discovered that the reason is most likely that the script doesn't know how to stop the deamon ...
1
vote
1answer
57 views
Erlang: What happens when you f() a Pid in erl?
Say I'm working with some simple processes in erl:
1> Fun = fun(F) -> F(F) end.
#Fun<erl_eval.6.82930912>
2> Pid = spawn(fun() -> Fun(Fun) end).
<0.178.0>
3> f(Pid).
What ...
0
votes
1answer
48 views
Wrong value of UID in stat() and wrong pr_pid in psinfo_t
My function reads process list from /proc, then read process psinfo file into proper sturcture, as well as data about this file, and prints it.
The problem is, some of the data in those structures is ...
0
votes
2answers
95 views
How to get PID via subprocess.Popen with custom environment variable?
Using Python, how can I run a subprocess with a modified environment variable and get its PID? I assume subprocess.Popen() is along the right track...
In shell (bash), I would do this:
...
0
votes
1answer
69 views
why does a node.js process suddenly die on osx with no explanation in any log file?
90% of the time I always get a stack trace. But sometimes the process just quits and I have no idea why. Anyway to print the stack trace always? Or find more information in dmesg or something?
0
votes
0answers
24 views
How to detect process adoption for cybersecurity
On a cybersecurity project, my teammates and I have come across the following potential security risk:
A malware process generates a child, which, in turn, generates a grandchild.
The grandchild is ...
2
votes
1answer
92 views
Find unix command PID from Java [duplicate]
It is very easy to get the PID of previous process in unix-
echo $!
But, suppose I execute a unix command via Java-
Process process=Runtime.getRuntime().exec("myScript.sh");
Now, how do I now ...
0
votes
3answers
99 views
Open process with specific pid in python
How can I open a process in python with specific pid. I mean i want to set process PID.
Edit:
I want determine PID of process which i have been ran with process (e.g. using Popen method of ...
2
votes
1answer
104 views
subprocess.popen pid change
I have a script in which I use subprocess.Popen to start an external program and process.kill() to kill it pretty much as soon as it's started. I've been getting Windows Error [5] (Access Denied) ...
0
votes
1answer
109 views
How can I programmatically get the list of open file descriptors for a given PID on OS X?
Everything I've seen says to use lsof -p, but I'm looking for something that doesn't require a fork/exec.
For example on Linux one can simply walk /proc/{pid}/fd.
2
votes
1answer
378 views
Filter application specific logs in adb logcat. (log tag, log message, pid, package name)
I'm taking logcat using this command,
C:\abs\ adb logcat >> "Testdata".txt
This is collecting all logs happening on device.
But I want to take only "Application specific" logs, Can anyone please ...
0
votes
2answers
52 views
Stale PID file after reboot
How do I deal with a stale pidfile after a reboot? I'm thinking I can't trust the number in the file, since another process may have taken its place with the same PID.
Can/should I ensure pidfiles ...
6
votes
2answers
293 views
Process name from its pid in linux
How to get a process name from his pid ?
For example I execute cat file1.txt, but I want to figure out that cat command and its arguments since its pid in the system. Is there a struct to determine it ...
-1
votes
1answer
26 views
IP Address of an ssh server that executed a command [closed]
I opened a file via an SSH session to a VM using FileZilla, and I need to know inside my VM the IP address of that host that executed the reading operation.
I already have the pid of the process who ...
0
votes
0answers
18 views
Is there any better way to show process name on windows server using Node.JS
Scenario: Building an application where its a requirement to collect the PID (Process ID) and show the details of user interface graphically (using flotcharts)
Issue is to get the name of the process ...
0
votes
1answer
169 views
How to create a microshell in C/C++?
I have an assignment to "Create a microshell in C/C++" and I am trying to figure out what exactly that means. I have this C code so far:
#include <sys/types.h>
#include <sys/wait.h>
...
0
votes
1answer
118 views
NodeJS child process PID does not match the real process
I'm using windows, and I'm doing this experiment,
console.log( _.process.exec( "mongod --dbpath . --port 8083 --bind_ip 127.0.0.1" ).pid );
The problem is, when I do a tasklist command, the PID ...
-1
votes
1answer
17 views
Killing a PetalsESB Server in a Java programm
My Problem: I run a program in Java / Groovy. In this program, I start a PETALS ESB Server, which also runs on Java.
I want to kill only the server and then start him afterwards again in the same ...
4
votes
1answer
193 views
How to find out application name by PID (process id)
I'm trying to install VisualSVN server and have message "Specified TCP port is occupied by another service". How I can find what service or app is using the 443 port?
"netstat -aon" shows me only
...
0
votes
0answers
12 views
Avoid printing process id when echo statement is called
This is a spice related question (am running ngspice- a circuit simulator), but it uses echo (shell command) and hence am posting it here.
I am doing a measurement inside the .control statement and ...
0
votes
1answer
20 views
How to get the PID of a VB3 process running in Win7?
I tried to use the tasklist command in cmd but it was not listed in there.
I also notice that the process is a little indented in task manager together with another process called wowexec.exe.
Any way ...
1
vote
0answers
72 views
send character to stdin of background Java process
I am looking to send a character to a Java process running in the background. I found this article ...
0
votes
2answers
373 views
Get PID of Runtime process using JNI
I need to get the PID of a process which is launched via Java's Runtime.getRuntime().exec() command.
I know how to do it in JNA. But I really would like to do it with JNI and create my own libraries. ...
1
vote
2answers
98 views
How many processes and threads will be created?
I have this code and trying to understand how many process and threads will be created from this:
pid t pid;
pid = fork();
if (pid == 0) { /* child process */
fork();
thread create( . . .);
}
...
-2
votes
3answers
173 views
How to convert pid_t to string
So, I need to strcat pid to some string.
I have this
strcat (str,(char*)getpid());
but this doesn't work.
----edit----
ok i understand the downvotes. i was too quick to post a question. and ...
3
votes
1answer
134 views
getpid and getppid returns two different values
When I run the code below
#include <stdio.h>
# include <sys/types.h>
//int i=0;
int main(){
int id ;
id = fork() ;
printf("id value : %d\n",id);
if ( id == 0 )
{
printf ( ...
2
votes
2answers
120 views
C - Get Process ID of signalling process
So this is the problem im having right now, I've created 2 different programs (1 will be managing the other, while the other will be executed multiple times). The programs will be communicating back ...
0
votes
0answers
108 views
Get pid from a java subprocess started with xvfb-run
I'm trying to get the PID of a java process started with xvfb-run. When started without xvfb-run, I use $! to get the PID of the last backgrounded process but as soon as I use xvfb-run I obviously get ...
0
votes
1answer
50 views
Get all running apps PIDs
I'm running on a jailbroken iPhone and creating a tweak. I need a way to get all currently running apps PID's.
Is this possible? What would be the best way to do it?
Thanks! Any help is appreciated
0
votes
1answer
137 views
java Runtime.exec python and thread in python not run
python script:
import os
import subprocess
import threading
import sys
command= sys.argv[1:]
command=" ".join(command)
def readValue():
print 'start receive command'
while True:
...
3
votes
2answers
210 views
Get the PID of the process started by CreateProcess()
Let me start off by stating that I'm not from C background. I'm a PHP developer. So everything that I've coded so far is by taking bits and pieces from other examples and fine tuning them to meet my ...
0
votes
2answers
165 views
Task owner pid in a Linux kernel module when executed in swapper
Given a task instance having pid 0 and comm "swapper/0", how to get the owner pid ?
==EDIT==
This happens using Netfilter hooks.
