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 ...
0
votes
2answers
66 views
Withing script X getting the PID of the process which feeds the stdin
I want to execute Program_A, and have it output examined by Program_B. e.g.
$ Program_A | Program_B
Within Program_B, I would like to be able to terminate Program_A if a certain condition matched.
...
2
votes
3answers
634 views
Are process ids non-negative in Linux?
I am implementing a syscall that is called in user-space, lets say by foo.
The syscall accesses foo's task_struct ( throught the global pointer current), prints it's name and pid, then goes on to ...
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
vote
1answer
282 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 ...
2
votes
2answers
912 views
C - Get PID of process opened with popen
I have a program written in C, which opens another program using popen. I 'd like to get the pid of that program or some kind of handler for it, so as to kill it after a certain time limit, or if it ...
1
vote
2answers
356 views
Output PID to file from process executed in bash script?
I've got this simple bash script that starts a server process. I want to output the pid of the server process to a file, pid.txt. After some quick searching on SO, I came up with this approach, but it ...
0
votes
2answers
282 views
no oscillation after put in pid controller
I have a problem regarding putting a PID controller in my simulink file.
In my simulink file, i used pid controller to control my process. I used s-function as my process block diagram.
According ...
0
votes
1answer
158 views
nice way to kill piped process?
I want to process each stdout-line for a shell, the moment it is created. I want to grab the output of test.sh (a long process). My current approach is this:
./test.sh >tmp.txt &
PID=$!
...
3
votes
2answers
1k views
How do I get the PID of a process spawned with Perl's system function?
I'm writing a Perl script (say script.pl) that calls another script newscript.pl. I want to get the PIDs of both the scripts in script.pl only. I can get the PID of script.pl by using following code
...
0
votes
1answer
165 views
Device VID and PID to pass into function
I am trying to use the following function:
PCHAR pVID_PID="vid_04D8&pid_fc5f";
DWORD n= MPUSBGetDeviceCount(pVID_PID);
It is imported from mpusbapi.h, where it is defined as such:
DWORD ...
-4
votes
1answer
449 views
how to calculate pid parameters [closed]
I'm facing difficulty in calculate PID parameters in my simulink file?Can someone teach me how to calculate it or do you have any references for me to read? sorry for this silly question...
0
votes
1answer
144 views
find pid from port over Google TV (Android non-rooted device)
I'm trying to find the ports being used by a pid over Android's non-rooted GoogleTV (Sony) device.
Unfortunately, all the "netstat -p" ,lsof ,/proc//fd are being blocked.
Is there any other way I can ...
0
votes
2answers
93 views
probleme with the trace of Fork()
i have this example of fork() i need to do a trace!
#include <unistd.h>
int main(void) {
int i;
for (i=0; i<3; i++)
...
1
vote
1answer
269 views
code source of Fork(), Diagram process
i have this Diagram of process, i have to do the code source!!!
please check if its correct
the is the my solution for
a)
#include <unistd.h>
int main(void) {
...
0
votes
2answers
372 views
bash lsof : get pid from one tty to another one
How to get the pid in tty1 of the process launched in tty2 ?
Context :
Trying to write a bash one-liner to kill a process generating a file when this file exceeds a pre defined max size. (The ...
2
votes
0answers
665 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
2answers
381 views
how to get application name from process in android?
i am trying to get background running applications name. Here is my code
ActivityManager am = (ActivityManager)getSystemService(Activity.ACTIVITY_SERVICE);
...
10
votes
3answers
4k views
Check if process exists given its pid
Given the pid of a Linux process, I want to check, from a C program, if the process is still running.
2
votes
1answer
5k views
How to get child PID in C?
I'm creating child processes in a for-loop. Inside the child process, I can retrieve the child PID with getpid().
However, for some reason when I try to store the value of getpid() into a variable ...
0
votes
1answer
197 views
Load test under linux (memory, total time, %cpu)
I have to perform a load test under Red Hat Linux 6.2 using standard software, i.e. I cannot install anything there. It is intended to take account of total time, total memory use and % of cpu for ...
0
votes
3answers
365 views
Running only single instance of Executable Jar file
So i have packaged my project as a single executable jar that works fine. But at times it happens that the user launches the file multiple times, and this causes it to launch multiple instances of ...
9
votes
1answer
1k views
How to get variable from text file into Bash variable
Simple question, in BASH I'm trying to read in a .pid file to kill a process. How do I read that file into a variable. All the examples I have found are trying to read in many lines. I only want to ...
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 ...
7
votes
3answers
7k views
Android - How to get the processName or packageName by using PID?
MY QUESTION: What could I use to retrieve the processName or packageName of a certain process given its PID?
Since in my task manager I wanted to use the PID while utilizing the ...
1
vote
2answers
216 views
How to handle an abandoned PID file when the user cancels a script?
This is more of a question about best practices. My server allows users to convert fonts from one format to another using FontForge. To prevent collisions, only one font conversion is allowed at any ...
1
vote
2answers
9k views
how to get PID from command line filtered by username and imagename
I need to be able to get the PID from a running process (cmd.exe) using the command line.
The problem is there are two cmd.exe running. One is under the username SYSTEM and one is compUser. Is there a ...
0
votes
3answers
135 views
Not able to kill 2 activities at the same time. why is that?
I'm trying to kill 2 activities on the onclick of a button. The current activity and the previous activity. Using their pids. I'm just able to kill one activity. Why does this happen?
public void ...
0
votes
2answers
189 views
NSRunningApplication can't recognize PID of Window Server?
In my Cocoa app I am detecting visible windows and getting PID of their owners. Then for ever PID I create NSRunningApplication object (using runningApplicationWithProcessIdentifier:) to get ...
0
votes
2answers
283 views
bash script does not appear in ps aux output : how to kill?
I have done some googling on this but not come up with an answer ... frustration is setting in!
I want to kill my bash script. This executes various other processes. I can kill any process for which ...
0
votes
1answer
94 views
Match a pid to an application desktop schema on Linux
All standards compliant applications in Linux store a desktop schema in /usr/share/applications/. In my particular use case, I have a WnckWindow data structure and I can get a pid from that. Using ...
16
votes
2answers
14k views
What is a .pid file and what does it contain?
I recently come across a file with the extension .pid and explored inside it but didn't find much. The documentation says:
A Pid-File is a file containing the process identification number (pid) ...
4
votes
1answer
569 views
Kalman Filter on PID
I'm not sure if this goes here, but I'm having a bit of trouble understanding the Kalman filter. What I want to do is condition a sensor with a PID compensator to find the optimal gains for the PID ...
0
votes
2answers
496 views
Finding the IP from the PID
I'm a newbie to shell programming and I'd like to find the IP address from the process ID. Right now, I'm able to get the PID for a specific process from :
vmname=$1
pid=`ps aux | grep $vmname | awk ...
0
votes
1answer
601 views
Waitpid Usage and Bash Scripting
I'm trying to write a program in which a program continuously takes in a user input through a while loop, and in each loop forks a new child of the current program process while running a shell ...
2
votes
3answers
412 views
Wait for all processes with a certain name to finish (in bash)
I would like to wait in linux (Ubuntu 11.10) for a load of processes to finish. Each of these processes has a different pid but the same name. Is it possible to do this?
EDIT:
Perhaps I should ...
1
vote
1answer
793 views
Multiple fork() Children with pipes
I am trying to make a program in C++ that is creating childs with fork().
It should take childs number from argv and create these childs,every child is creating another one and communicate each other ...
2
votes
2answers
566 views
How do I obtain the PID of a spawned java process
I am writing several java programs and will need to kill off/clean up in a seperate JVM after I am done with whatever I wanted to do. For this, I will need to get the PID of the java process which I ...
1
vote
2answers
1k views
how to get the process name from the PID in C++? [duplicate]
Possible Duplicate:
How to get Process Name in C++
I am looking for a way to to get the process name from the PID?
I need to translate process id (PID) to process name
any idea?
5
votes
8answers
5k views
Ubuntu Java: Find a specific program's pid and kill the program
I'm trying to make an application that checks if this specific application is running, then kill the app after a specified amount of time. I'm planning to get the pid of the app. How can I get the pid ...
4
votes
3answers
2k views
Wait until a certain process (knowing the “pid”) end
I have this:
def get_process():
pids = []
process = None
for i in os.listdir('/proc'):
if i.isdigit():
pids.append(i)
for pid in pids:
proc = ...
0
votes
1answer
1k views
How to add a pid_t to a string in c
I am experienced in Java but I am very new to C. I am writing this on Ubuntu.
Say I have:
char *msg1[1028];
pid_t cpid;
cpid = fork();
msg1[1] = " is the child's process id.";
How can I ...
0
votes
1answer
855 views
Android application to get process pid [closed]
Linked to THIS QUESTION,
have you notice about a pidoff that i can compile on Honeycomb? I have to obtain same process pid to be used in a shell script (deployed with the bsp). I cannot use busybox ...
-1
votes
2answers
927 views
How i can change the uid and pid of my app?
The thing is that i try to reboot my app, but he throw a exception and the messages say that with xxxx uid and with xxxx pid you cant reboot. So, if i can search what is the pid or uid that can, may ...
3
votes
2answers
135 views
How to fire Java method using bash
Suppose I launch a Java application:
java -cp whatever.jar com.example.Start
Process launches ok and keeps running with PID 1314.
Now I would like the system to fire a method by users request.
How ...
7
votes
1answer
6k views
How to get pid of android application with out using adb shell?
how can i get android application pid with out using adb shell.is there any api to get pid .
any help will be appreciated
0
votes
1answer
59 views
Determining if a process is running by its Command Name
So I have multiple processes running: N amount of working threads and 1 collector thread.
I want to determine ONLY if the collector thread is active.
These are the command results from pgrep php | ...
2
votes
1answer
178 views
MacOSX: find out if a process (given a PID) is running in 32bit or in 64bit Intel mode
I have a PID and I want to find out if the process is running in 32bit or in 64bit Intel mode. How?
1
vote
2answers
78 views
Do PID values only increase over time? Or can they also generate lower values
I noticed that the PID of the processes my webapp is spawning keeps getting larger over time.
For each process, the PID is stored in a file to reference from the web app. I originally had a file ...
0
votes
3answers
374 views
kill: not a pid or valid job spec
I have created an application that is basically a deamon written in C. It is stopped and started using a shell script. Specifically, to stop it, kill is used to send a SIGTERM signal. The PID of ...
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.
...
