process


 
Thread Tools Search this Thread
Top Forums Programming process
# 1  
Old 02-04-2005
process

how do differentiate a parent process and child process through the process id while it is executing through fork() command.

can i get the process id of both processes and can i do any operation on the process by using process id
# 2  
Old 02-04-2005
You check the return value from fork. The man page says...
Quote:
RETURN VALUES

Upon successful completion, fork(2) returns a value of 0 to the child
process and returns the process ID of the child process to the parent
process. Otherwise, a value of -1 is returned to the parent process, no
child process is created, and the global variable errno is set to indicate
the error.
# 3  
Old 02-04-2005
From google

fork() causes a process to duplicate. The child process is an almost-exact
duplicate of the original parent process; it inherits a copy of its parent's
code, data, stack, open file descriptors, and signal table. However, the parent
and child have different process id numbers and parent process id numbers.

If fork() succeeds, it returns the PID of the child to the parent process,
and returns 0 to the child process. If it fails, it returns -1 to the parent
process and no child is created.

fork() is a strange system call, because one process(the original) calls it, but
two processes(the original and its child) return from it. Both processes continue
to run the same code concurrently, but have completely separate stack and data
spaces.

A process may obtain its own process id and parent process id numbers by
using the getpik() and getppid() system calls, respectively. Here's a synopsis
of these system calls:

System Call: int getpid()
int getppid()

getpid() and getppid() return a process's id and parent process's id numbers,
respectively. They always succeed. The parent process id number of PID 1 is 1.

To illustrate the operation of fork(), here's a small program that duplicates and
then branches based on the return value of fork():
Code:
$ cat fork.c
#include <stdio.h>
main()
{
    int pid;
    printf("I'm the original process with PID %d and PPID %d.\n",
           getpid(),getppid());
    pid=fork();  /* Duplicate. Child and parent continue from here.*/
    if (pid!=0)  /* pid is non-zero, so I must be the parent  */
        {
           printf("I'm the parent process with PID %d and PPID %d.\n",
                   getpid(),getppid());
           printf("My child's PID is %d.\n", pid);
        }
    else  /* pid is zero, so I must be the child. */
        {
           printf("I'm the child process with PID %d and PPID %d.\n",
                   getpid(),getppid());
        }
    printf("PID %d terminates.\n",pid);  /* Both processes execute this */
}


$fork.exe ... run the program.
I'm the original process with PID 13292 and PPID 13273.
I'm the parent process with PID 13292 and PPID 13273.
My child's PID is 13293.
I'm the child process with PID 13293 and PPID 13292.
PID 13293 terminates. ... child terminates.
PID 13292 terminates. ... parent terminates.

Last edited by thumsup9; 02-04-2005 at 11:59 AM..
# 4  
Old 02-05-2005
Bug thank you

thank you very much for your reply.
Now I could clearly understand the concept about fork,the example you have given is an added advantage to understand the concept very clearly
-Raja
# 5  
Old 02-05-2005
Hammer & Screwdriver a detailed description

click here

Collins Smilie
# 6  
Old 02-05-2005
time quantum

i can't understand the following lines about fork()

Due to the fact that the CPU scheduler will assign a time quantum to each process, the parent or the child process will run for some time before the control is switched to the other and the running process will print some lines before you can see any line printed by the other process. Therefore, the value of MAX_COUNT should be large enough so that both processes will run for at least two or more time quanta. If the value of MAX_COUNT is so small that a process can finish in one time quantum, you will see two groups of lines, each of which contains all lines printed by the same process.


#include <stdio.h>
#include <sys/types.h>

#define MAX_COUNT 200

void ChildProcess(void); /* child process prototype */
void ParentProcess(void); /* parent process prototype */

void main(void)
{
pid_t pid;

pid = fork();
if (pid == 0)
ChildProcess();
else
ParentProcess();
}

void ChildProcess(void)
{
int i;

for (i = 1; i <= MAX_COUNT; i++)
printf(" This line is from child, value = %d\n", i);
printf(" *** Child process is done ***\n");
}

void ParentProcess(void)
{
int i;

for (i = 1; i <= MAX_COUNT; i++)
printf("This line is from parent, value = %d\n", i);
printf("*** Parent is done ***\n");
}

My doubt is ,Even though we split the process by using the process id and we set the time quantum is minimum,
is it run by the same proces, i mean either by the parent only or child only
# 7  
Old 02-05-2005
fork()

#include <stdio.h>
#include <string.h>
#include <sys/types.h>

#define MAX_COUNT 200
#define BUF_SIZE 100

void main(void)
{
pid_t pid;
int i;
char buf[BUF_SIZE];

fork();
pid = getpid();
for (i = 1; i <= MAX_COUNT; i++) {
sprintf(buf, "This line is from pid %d, value = %d\n", pid, i);
write(1, buf, strlen(buf));
}
}

if i execute the code the process would be like



but ,do both processes execute the while loop seperately
can i get the result like that

parent 1 ...............200

child 1...............200
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Command to get exact tomcat process I am running ignoring other java process

Team, I have multiple batchjobs running in VM, if I do ps -ef |grep java or tomcat I am getting multiple process list. How do I get my exact tomcat process running and that is unique? via shell script? (4 Replies)
Discussion started by: Ghanshyam Ratho
4 Replies

2. Shell Programming and Scripting

Monitoring processes in parallel and process log file after process exits

I am writing a script to kick off a process to gather logs on multiple nodes in parallel using "&". These processes create individual log files. Which I would like to filter and convert in CSV format after they are complete. I am facing following issues: 1. Monitor all Processes parallelly.... (5 Replies)
Discussion started by: shunya
5 Replies

3. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (6 Replies)
Discussion started by: naveeng
6 Replies

4. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (1 Reply)
Discussion started by: naveeng
1 Replies

5. BSD

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (0 Replies)
Discussion started by: naveeng
0 Replies

6. Shell Programming and Scripting

script to monitor the process system when a process from user takes longer than 15 min run.

get email notification from from system when a process from XXXX user takes longer than 15 min run.Let me know the time estimation for the same. hi ,any one please tell me , how to write a script to get email notification from system when a process from as mentioned above a xxxx user takes... (1 Reply)
Discussion started by: kirankrishna3
1 Replies

7. Shell Programming and Scripting

[KSH/Bash] Starting a parent process from a child process?

Hey all, I need to launch a script from within 2 other scripts that can run independently of the two parent scripts... Im having a hard time doing this, if anyone knows how please let me know. More detail. ScriptA (bash), ScriptB (ksh), ScriptC (bash) ScriptA, launches ScriptB ScirptB,... (7 Replies)
Discussion started by: trey85stang
7 Replies

8. Shell Programming and Scripting

Shell Script to Kill Process(number of process) Unix/Solaris

Hi Experts, we do have a shell script for Unix Solaris, which will kill all the process manullay, it used to work in my previous env, but now it is throwing this error.. could some one please help me to resolve it This is how we execute the script (and this is the requirement) ... (2 Replies)
Discussion started by: jonnyvic
2 Replies

9. Shell Programming and Scripting

script to monitor process running on server and posting a mail if any process is dead

Hello all, I would be happy if any one could help me with a shell script that would determine all the processes running on a Unix server and post a mail if any of the process is not running or aborted. Thanks in advance Regards, pradeep kulkarni. :mad: (13 Replies)
Discussion started by: pradeepmacha
13 Replies

10. Shell Programming and Scripting

Script - How to automatically start another process when the previous process ends?

Hi all, I'm doing automation task for my team and I just started to learn unix scripting so please shed some light on how to do this: 1) I have 2 sets of datafiles - datafile A and B. These datafiles must be loaded subsequently and cannot be loaded concurrently. 2) So I loaded datafile A... (10 Replies)
Discussion started by: luna_soleil
10 Replies
Login or Register to Ask a Question