0
votes
0answers
36 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
1answer
49 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.
-2
votes
1answer
68 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 ...
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
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.
6
votes
2answers
290 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 ...
0
votes
1answer
168 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> ...
-2
votes
3answers
171 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
133 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
118 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 ...
3
votes
2answers
206 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 ...
1
vote
2answers
253 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
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 ...
3
votes
3answers
616 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 ...
0
votes
2answers
126 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 ...
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 ...
0
votes
2answers
143 views

How to get the PIDs of the child processes?

Is there a way, to get the PIDs of the child processes? I mean, if i open a cmd prompt using CreateProcess, i know its PID because i can get it from the returned ProcessInformation structure. But is ...
2
votes
4answers
204 views

Can a process have two PIDs?

I'm studying computer systems and I've made this very simple function which uses fork() to create a child process. fork() returns a pid_t that is 0 if it's a child process. But calling the getpid() ...
0
votes
2answers
50 views

Ensure PID refers to the correct process

I fork() a parent process to a child, the PID returned by fork() is stored in the parent's memory, then time passes and the child terminates; Now can I determine if the PID value stored in the ...
6
votes
4answers
242 views

How can I determine the maximum value of a pid_t?

How can I portably determine the maximum value of the pid_t type? There's no PID_MAX constant on my system. (Note, I mean the maximum value permitted by the data type, not the de facto maximum value ...
1
vote
1answer
248 views

Getting the full path of a running PID with C/C++ without using the system function (Linux)

So I want to be able to get the full path of a running process (which I have the process ID for) without using any commands on the command line. Anyone has any ideas on how to do this? I do have the ...
0
votes
3answers
194 views

WAIT does not wait for child

#include <stdio.h> #include <sys/types.h> #include <unistd.h> #include <assert.h> #include <stdlib.h> #include <sys/wait.h> #include <string.h> char ...
5
votes
2answers
375 views

Why aren't my processes running concurrently?

My questions are: 1.) How can I get the parent process to always die last? I get that this isn't being accomplished because the parent is the first pid that gets ran, but I don't know how to change ...
0
votes
2answers
193 views

What does the second parameter of waitpid() mean?

From a existing question here, someone gave this example code: int status; child_pid = fork(); if (child_pid == 0) { // in child; do stuff including perhaps exec } else if (child_pid == -1) { ...
1
vote
2answers
851 views

How to get the pid of a process that is listening on a certain port programmatically?

I have to write a SNMP module which monitor a certain server application that I have written too. The problem is that I have to know if this application is running and I should be able to kill it ...
0
votes
4answers
3k views

How to kill a process in C when pid is know

I have a cleanup process which needs to kill the process whose PID is passed as an argument to it. I can very well use the kill(pid_t, SIGKILL) to kill it. However the PID which i get is an integer ...
-2
votes
1answer
366 views

Can I get the the UID of a given PID using C

I want to get the user ID of a given process ID using C How can I do it? Any insight appreciated ;)
0
votes
2answers
474 views

non-blocking system call in c++ program using fork

Based on this SO post, and this example, I expect that, when I use fork(), will allow me executing system/execvp in non-blocking manner. However, when I try to issue a long-running child process in a ...
0
votes
2answers
393 views

show process name and pid in Debian

How can i get and show name and PID for current proccess in a Linux kernel module? My code : #include <linux/module.h> #include <linux/init.h> #include <linux/kernel.h> ...
2
votes
2answers
919 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 ...
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
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 ...
1
vote
3answers
504 views

Get PID by parsing the output of /bin/ps

Within a C-program I'm reading line by line the output of /bin/ps -fu1000 and searching for a string, for example "gnome". When I found the string (gnome), how can I get the pid? The whole line is ...
11
votes
2answers
5k views

Maximum PID in Linux

I am porting an application from Tru64 to Linux and it uses PID_MAX defined in limits.h. Linux doesn't have that define. How do I find PID_MAX in c without reading proc/kernel/pid_max by hand? Is ...
4
votes
6answers
1k views

Linux: detect launching of programs

I wrote a simple daemon. This daemon should respond when I run any program. How to do this? In a big daemon loop: while(1){ /* function which catches new programm running */ } What functions ...
0
votes
3answers
240 views

Reduce time between each kill() function in C

Hi does anyone know a way to send signal SIGUSR1/2 without loss to another pid ? the problem is when i put kill(pid, SIGUSR1) in a while loop, my other program recieve only few of them, its seems ...
3
votes
1answer
619 views

wait()/waitpid() returns 1, not pid of child, how to fix that?

this is a follow up to How to squeeze in additional parameters to a reaper function when a parent is signalled to kill a child (c) ? In my reaper(), I try to obtain the child's pid the parent is ...
0
votes
2answers
112 views

How to squeeze in additional parameters to a reaper function when a parent is signalled to kill a child (c)?

I'm writing a TCP server that functions very much like a chatroom and came across this question. When a user connects, a child process is created to serve the user. When a user logs in, I store his ...
2
votes
2answers
104 views

error bad execution (operating system course) need explain

I wrote in my noteBook the code below and I write it now in the xcode and this is the output by the teacher: child reads : 0,1 parent write: 1,2 child reads : 1,2 parent write: 3,5 child reads : 3,5 ...
1
vote
2answers
182 views

can anyone explain this output (operating system)?

while i'm studying the operating system course i didnt understand why the output of the code below like this the code: #include <stdio.h> #include <stdlib.h> #include <unistd.h> ...
1
vote
3answers
156 views

Are unix process ID's base 10?

After reading a series of man pages and searching through google, I decided to post this question to the bright folks of stack overflow. I'm working on a basic Unix Shell and one of the requirements ...
4
votes
1answer
2k views

How to use the pidfile library correctly?

I already read the man page of the pidfile function family. But I don't really understand it. What is the correct usage? Is there a more elaborate example available? I think I understand pidfile_open. ...
1
vote
2answers
275 views

What C headers for directory traversal are process safe in Linux?

I'm currently using dirent.h and ftw.h for directory traversal at my CGI website 100% programmed in C. I am not sure if they are process safe; would various users interfere with each other while on my ...
1
vote
2answers
798 views

How to redirect stdin from my app to another knowing its PID (C,in windows)

I have a script vbs wich redirect some data to the stdin of myApp (written in C in Windows). If myApp was already launched before myApp finds the PID of the first myApp session and redirects the input ...
8
votes
4answers
4k views

Fast way to determine if a PID exists on (Windows)?

I realize "fast" is a bit subjective so I'll explain with some context. I'm working on a Python module called psutil for reading process information in a cross-platform way. One of the functions is a ...
4
votes
6answers
15k views

Find PID of a Process by Name without Using popen() or system()

I've a process name and I've to send a kill() signal to that process but I need its PID to call kill(). I would only like to use: popen("pidof process_name"); as the last thing. Is there any other ...