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
0answers
13 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
23 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
88 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
624 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
108 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
247 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
163 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
140 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
117 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
60 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
152 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
307 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
190 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.
0
votes
1answer
179 views
Python inter-process communication, getting pid of an independent process (not child) started from another Python process
I have a problem that feels like it ought to be simple. As a side-note, I'm already using the multiprocessing module, so I'm somewhat reluctant to use the subprocess module. Anyway, I have a Python ...
1
vote
2answers
318 views
Linux: check if process has read access to file in C/C++
Assuming we have some PID and absolute file path [not a symlink, just a regular file] - what is the most efficient way to determine that PID has read access to this file?
0
votes
1answer
73 views
Erlang print processID?
This is a really simple question pertaining to printing out the process id of a connection. For example printing out Listen in this one? I'm assuming Listen is a Pid btw...
{ok, Listen} = ...
3
votes
3answers
173 views
How do I get the full path for a process on OS X?
I know that I can get the PID for a process by using ps, but how to a find the full path of that process?
2
votes
5answers
184 views
Kill all pid files in a folder
I have a folder that is filled with .pid files. Each has the PID for a resque worker. How can I kill every PID in that folder from the command line?
4
votes
1answer
151 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 ...
-1
votes
2answers
119 views
Maximum pid and maximum ram in linux [closed]
I'm trying to understand what is maximum pid number for linux and how it is correlated with maximum RAM. I have already read this and this but i still do not understand: Why maximum number for 32 bit ...
0
votes
1answer
92 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 ...
2
votes
1answer
604 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 ...
0
votes
3answers
262 views
How to find the memory consumption of a particular process in linux for every 5 seconds
I just want to know how to find the memory consumption of a particular process for particular time(say 5 seconds)
I am new to linux. So, detailed steps of doing that will be appreciated
3
votes
3answers
859 views
How do I use a PID controller?
I'm currently working on a temperature controller.
I have a Temperature_PID() function that returns the manipulated variable (which is the sum of the P, I, and D terms) but what do I do with this ...
2
votes
0answers
328 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 ...
0
votes
1answer
71 views
mpi process ids
I would like to get the process ids of an mpi application which I start with mpirun/mpiexec tools.
For example I run my code with lets say 8 processes and want to get the process ids of all these 8 ...
0
votes
1answer
45 views
linux newbie— how to determine the pid for a process corresp. to specific app/web app
I wish to start a web app in a linux server-- and then monitor its performance periodically using top command.
However top requires the pid (for getting stats of a specific app/process)-- and what I ...
0
votes
1answer
149 views
Extract PID of all iOS processes running [duplicate]
Possible Duplicate:
Can we retrieve the applications currently running in iPhone and iPad
I am searching for a way to grab a list of all processes running on an iDevice and their respective ...
2
votes
2answers
367 views
How to check if an arbitrary PID is running using Node.js?
Is there some way to check if an arbitrary PID is running or alive on the system, using Node.js? Assume that the Node.js script has the appropriate permissions to read /etc/proc or the Windows ...
0
votes
0answers
12 views
'nice' scheduling priority for threads within a process instead of just for a single process? [duplicate]
Possible Duplicate:
is nice() used to change the thread priority or the process priority?
From what I have read, default behaviour in Linux is not allow to change thread priorities ...
0
votes
1answer
187 views
How to get process PID from PHP on Windows
I am developing a web-based application and I need to run a Matlab script to process some information.
The problem is that I have a limitation on the maximum number of Matlab processes running at ...
0
votes
2answers
431 views
Sidekiq Doesn't Create a PID file
In order to stop Sidekiq I need to use:
$bundle exec sidekiqctl stop /Users/me/Documents/sites/some_site/tmp/pid/sidekiq.pid 20
I am telling Sidekiq to create a pid file in a config.yml file:
...
1
vote
3answers
104 views
Long running process remote termination?
I am developing an application that allows users to run AI algorithms on the server remotely. Some of these algorithms take a VERY long time. It is set up such that AJAX calls supply the algorithm ...
-1
votes
1answer
802 views
Meaning of PID, PPID and TGID [closed]
What does the Linux kernel acronyms PID, PPID, TGID stand for?
I stumbled upon them at strace-pids
0
votes
1answer
72 views
UNIX - Stopping a custom service
I created a client-server application and now I would like to deploy it.
While development process I started the server on a terminal and when I wanted to stop it I just had to type "Ctrl-C".
Now ...
0
votes
0answers
99 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 ...
1
vote
1answer
176 views
Getting process status and exit code from process id in ruby
I want to create s subprocess in Ruby for running and interacting with other programs, and I need to use Process.spawn because Open3.popen3 does not work in Windows. Open3.popen3 gives you a nice ...
0
votes
2answers
139 views
How to retrieve the all available PIDs on windows in tcl?
I wanted to know the method for retrieving all available pids in windows through tcl coding. This is I need for killing process based on if it available or not?.
Thanking you.
code:
proc ...
7
votes
2answers
838 views
Why can't I drop MySQL Database?
Problem
I'm running MySQL 5.5.23 on Mac OS 10.8.2 and am unable to drop a particular database, but I can drop others.
When I attempt to drop the specific table I get this error:
#1548 - Cannot load ...
1
vote
3answers
164 views
Sending message Pid Erlang
I would like to know, how can i send a message to process with erlang.
I did start a process and the output shows me that the pid is <0.39.0>.
My problem is how can i send a message to this process ...
1
vote
2answers
276 views
Find java PID using batch
I need to know java process PID from Windows batch console.
@echo off
set p=%CD%
FOR /F "tokens=1" %%A IN ('"%JAVA_HOME%/bin/jps.exe -v"\|find "%p%"') DO SET str=%%A
echo str = "%str%"
Java ...
0
votes
2answers
151 views
Write pid to fifo - C
I've got two C files, server.c and client.c. The server has to create a fifo file and constantly read in it, waiting for input. The client gets its PID and writes the PID in the fifo.
This is my ...
0
votes
1answer
65 views
Anyway to get the ID of processes created by Supervisord?
I need the process ID of processes created using supervisord for use in a script. Processes spawned by supervisord don't create .pid files in their default directories, if at all.
How do I get the ...
0
votes
2answers
158 views
retrieving pid in unix startup script
in a simple startup script I wrote I have:
PID=`su user_name -c "daemon_name > /dev/null 2>&1 & echo \$!"`
echo $PID
The script is run as root. And the echo doesn't really echo ...
2
votes
1answer
43 views
can we attach a process to VS programatically as soon as the process is created? [duplicate]
Possible Duplicate:
How to set breakpoint at the very beginning of program execution
I have an application in C. I am using VS 2008 for the development. I need to debug the C code by ...
1
vote
1answer
463 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 ?
2
votes
3answers
551 views
I don't understand Integral part of PID controller
I dont understand integral part of PID controller. Let's assume this pseudocode from Wikipedia:
previous_error = 0
integral = 0
start:
error = setpoint - measured_value
integral = integral + ...
0
votes
1answer
534 views
Redis kicks out empty/blank pid file
I'm on ubuntu 12.04 and I have install just installed and setup redis-server using apt-get install redis-server The server is running fine, and acting as it should, apart from one thing - the pid file ...
1
vote
2answers
88 views
Writing the output of a process to a file which has the process id in its file name
This is what I'm trying to achieve:
Run a command/process in background and have it's output redirected to a temporary file which is named after the process id of the background process.
Example:
...
0
votes
2answers
64 views
wanted to know pid for outcome of script
./abcd.sh #this script is responsible to run a java code for creating a zip file in /tmp/abcd/
Some times abcd.sh script takes 30 seconds to create a zip file and some times it takes 60 seconds to ...


