Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What are the system calls used for process management:

Answers were Sorted based on User's Feedback



What are the system calls used for process management:..

Answer / chandrasekhar kar

The system calls for process management are
Fork() > create child process
Vfork() > create child process (copy-on-write only)
exec() > exec to do a different task
wait() > wait for a process to complete execution
kill() > to send a signal to a process
signal() > to handle a signal
sigaction() > handle signal
exit() > exit from a process execution
_exit() > same as exit() but with out clean up

and many more ................

Is This Answer Correct ?    32 Yes 4 No

What are the system calls used for process management:..

Answer / k.sri ganesh

fork() - To Duplicate the Process
exec() - Family of Functions Replace the calling process
image with new process image

getpid() - To get process id
getppid() - To get the parent process id
getpgrp() - To get the process group


wait() - To wait the calling process to get child's exit status
sleep() - To suspend the execution of the process for some
seconds
kill() - To send signal to a process
exit()-terminate the calling process
brk()-change data segment size
signal()-ANSI c signal handler
nice()-run a program with modified scheduling priority

Is This Answer Correct ?    11 Yes 0 No

What are the system calls used for process management:..

Answer / guest

The system calles for process management are fork() which
will create a process
wait() will wait for exit status of all child processes.

Is This Answer Correct ?    13 Yes 6 No

What are the system calls used for process management:..

Answer / prashanth

The system calls for process management are fork() and vfork
() which will create a process.

Is This Answer Correct ?    10 Yes 5 No

What are the system calls used for process management:..

Answer / marimuthu

fork() - To Duplicate the Process
exec() - Family of Functions Replace the calling process image with new process image

getpid() - To get process id
getppid() - To get the parent process id
getpgrp() - To get the process group


wait() - To wait the calling process to get child's exit status
sleep() - To suspend the execution of the process for some seconds
kill() - To send signal to a process

and etc

Is This Answer Correct ?    5 Yes 2 No

Post New Answer

More Unix IPC Interview Questions

What is IPC? What are the various schemes available?

5 Answers  


In Unix inter process communication take place using?

2 Answers  


What is the full form of ipc?

0 Answers  


Explain how do you execute one program from within another?

0 Answers  


Linking across directories?

2 Answers  


Describe the initial process sequence while the system boots up?

4 Answers  


What is ln(linking)?

0 Answers  


What is the very first process created by kernel?

0 Answers  


what is the condition required for dead lock in unix sustem ?

2 Answers  


What is Inode.

2 Answers   HCL,


What Happens when you execute a command?

3 Answers  


What is a Daemon?

3 Answers  


Categories