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 ...

learn more… | top users | synonyms

4
votes
1answer
137 views

PID Control Loops with large and unpredictable anomalies

Short Question Is there a common way to handle very large anomalies (order of magnitude) within an otherwise uniform control region? Background I am working on a control algorithm that drives a ...
3
votes
1answer
1k views

Use PHP's proc_open + bypass_shell to run an executable in the background AND retrieve the correct PID?

So, In PHP on Windows: is it possible to both run an executable in the background AND retrieve its PID? I've deduced that it's possible to accomplish both tasks separately, but not together. ...
2
votes
1answer
106 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) ...
2
votes
1answer
142 views

How to get the pid for the first task with the Daemons gem?

I am trying to run multiple instances of the same code/script using the Daemons gem. I've been playing around with it in an IRB session and can't seem to get the functionality I'm looking for. I want ...
2
votes
1answer
226 views

How to deal with the discontinuity of yaw angle at 180 degree

I'm working on a vehicle control and using a 9DOF sensor (accelerometer, magnetometer and gyroscope). For the yaw angle, I have a discontinuity problem at pi rad. (180 deg.). I'm controlling the ...
1
vote
1answer
994 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
506 views

MySQL error with homebrew on OSX 10.8

I've tried every solution posted here after running brew install mysql, and still no luck. On trying to start MySQL I get this: me$ mysql.server start Starting MySQL . ERROR! The server quit without ...
1
vote
1answer
285 views

How to find port number for a particular process id in unix?

In UNIX OS, how can I find the port number when i know the process name or pid ?
1
vote
1answer
383 views

How to get other application icon from process pid on iOS system?

I have seen this question: How to get the current application icon in ios Now i could get application path from process pid, then according the question above,with the code blow,i could not get the ...
1
vote
1answer
178 views

mapping pid to qdbus service numbers after launching

I am trying to write a bash script which will launch a program (konsole) and send dbus messages to it. Here is my experiment konsole & echo pid is $! ps aux | grep konsole qdbus | grep konsole ...
1
vote
1answer
287 views

How to stock PID of lockfile command in Linux

I am using lockfile command in linux to manage access to a special file. When my principal script crashes for some reason, i finish having hanging locks that prevent any new launch of the principal ...
1
vote
1answer
321 views

PHP Exec returning incorrect process ID

I am using PHP to launch an FFMPEG transcoding command. It's a typical LAMP setup running on Ubuntu 10.04 Server, there's nothing special about the configuration. The issue I am having is when I run ...
1
vote
1answer
975 views

Apache on Windows not releasing port 80 on service stop, and will not restart

When I try to restart Apache it throws the following error: ============================================ Apache 2 is starting ... (OS 10048)Normalerweise darf jede Socketadresse (Protokoll, ...
1
vote
1answer
2k views

Python subprocess.Popen get pid of the process that forks a process

I am firing up an ssh command that will fork itself out and will be running even after the script is done. So the code looks like this: ssh_proc = Popen(['ssh', '-f', '-N', '-L', local_forward, ...
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
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 ...
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
88 views

Ensuring that parent process terminates before child

If I use the following line in the child after a fork : while( getppid() != 1 ) to ensure that the parent terminates before the child (as when the parent terminates, the parent of the child process ...
0
votes
1answer
51 views

How to check for exit of mainstream web browsers?

This is the situation: I would like to open a browser window from python code, as in any of the following (portability is not an issue atm): subprocess.call(['xdg-open', ...
0
votes
1answer
83 views

How to list active applications with PID?

I didn“t find answer here, I hope it will help you.
2
votes
0answers
280 views

Auto generate w3wp.exe process dump file when CPU threshold is reached even when PID changes

I'm trying to troubleshoot an issue with one of our websites which causes the CPU to spike intermittently. The site sits on a farm of web servers and it intermittently happens across all servers at ...
2
votes
0answers
667 views

Android: How to get USB PID and VID of Android device

I am developing an android application and I have a problem with determining a USB PID and VID of android device where the app is installed. I found some tutorials how to get PID and VID of connected ...
1
vote
0answers
75 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 ...
1
vote
0answers
345 views

How to determine the process which is sending out icmp ping request under windows

By WireSharking the network traffic, I'm finding out my PC is sending out ICMP echo request to a suspicious ip address while I'm not running ping.exe explicitly. There must be some process doing this. ...
1
vote
0answers
170 views

Calling proc_selfppid() from an IOAudio kext in Lion

I've got a kext based on Apple's AudioReflectorDriver sample code (it intercepts audio output and makes a copy). On <= 10.6, when you call proc_selfpid() inside the IOAudioEngine subclass, it ...
1
vote
0answers
975 views

Is it possible for a single Java Virtual Machine to have different id's

We're running several JBoss instances with HotSpot 1.5.22 and today I found a JVM which has two different vmid's. This is what I'm seeing: $./jinfo -flags 13278 Attaching to process ID 13278, please ...
0
votes
0answers
39 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 ...
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 ...
0
votes
0answers
22 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 ...
0
votes
0answers
31 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 ...
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 ...
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
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
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
0answers
84 views

fuzzy pid controller not converging to refence point whereas pid controller converges

I am trying to implement fuzzy pid controller in simulink as uploaded at http://tinypic.com/view.php?pic=2ag269h&s=6. Fuzzy controller has two inputs, error and derivative of error and 3 outputs ...
0
votes
0answers
94 views

Store PID and return code of a background launched SSH Command

I have a little issue in one of my scripts. I've made a script to launch commands automatically through an ssh tunnel. To send those commands I use a named pipe (fifo file) that I tail -f into the ...
0
votes
0answers
128 views

Print the stdout of the background process

I have application and I included the few prinf lines for some debugg purpose . Now I have to run my code via cgi-fcgi ./myapp for some web related stuff . and this cgi-fcgi starting and moving my ...
0
votes
0answers
24 views

unknown process listed in top -H

When I run "top -H" on my system, I get an unnamed entry with a hex(0x2ddd7f7c). I got the pid value and tried to check if its listed in "/proc". It wasn't listed. But surprisingly, I was able to "cd" ...
0
votes
0answers
62 views

Why isn't this execl() not working?

int pid; int status; if((pid = fork()) == -1) { // test fork and assign child pid perror("fork failed\n"); } if(pid == 0) { // 0 = child ...
0
votes
0answers
183 views

getpid,getppid,wrong ppid and i got 1 extra child,how to schedule the OS,wrong child is forking

this is my code can someone test this and send the output on this site...so i can compare..to compile i use gcc test.c -o test and to run ./test 10 5...the code is going to run 10 child process and ...
0
votes
0answers
91 views

Get PID on windows with php 5.4

It was quite easy to get executed program pid using Sysinternals PsExec. But its stoped working on php 5.4 . Now nothing gets executed and script keeps running forever. Maybe there are other ways ...
0
votes
0answers
41 views

X11: Tracking process writing to or reading from clipboard

Is there any way to track the process(get PID), which is writing to or reading from X11 clipboard ?
0
votes
0answers
81 views

Passing QProcess object from a process to an other

I have the following problem: there are given three processes (QProcesses). The first one calls the second one what creates and calls the third one. Unfortunatelly I need the reference of third one in ...
0
votes
0answers
52 views

Send a Variable to a command line processes in php?

I don't know if it is possible but here it is, i am trying to send a variable to a command line processes that i have opened. $command = "cd FilePAth;"; $command .= 'export PATH=$PATH:`pwd`;'; ...
0
votes
0answers
277 views

How to get process ids of a browser process

I need help in terms of finding process id of a IE browser process. Please look into below about what I needed. When open any browser(Internet Explorer) , there are two browser instances appear in ...
0
votes
0answers
466 views

How to identify safari's “flash plugin” and get its pid

I've got 64bit safari running a flash video (OSX snow leopard). I try to list all process using the ps command in a shell window. Flash for safari comes up as "Plugin Process" However, if there are ...
0
votes
0answers
360 views

Lowpass filter for PID controller in discrete time

I am trying to implement a PID controller (in MATLAB .m file, not simulink), and I wanted to add a low-pass filter to my system. So the filter normally goes on the negative feedback loop (i.e., I ...
0
votes
0answers
169 views

Using runit on ubuntu to daemonize a spawn-fcgi proccess and the pid changes every second

below is my run script in runit in /etc/sv/myprogram/run #!/bin/sh exec spawn-fcgi -d /home/ubuntu/workspace/rtbopsConfig/rtbServers/rtbServer/ -f ...
-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 ...

1 2