answersLogoWhite

0

What is the purpose of FIRK system call in UNIX system?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

The FORK system call allows a program to create multiple activities in the same program that run simultaneously.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the purpose of FIRK system call in UNIX system?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is exec system call of UNIX operating system?

The exec family of UNIX system calls will overlay the current process with another process. It can be used to "chain" a series of programs to run together. When used with the "fork" system call it allows multi-tasking to occur.


4 What is a process to Explain the mechanism of process creation in UNIX system?

Are u talking abt the KErnal process? A program under execution is called process. All processes in UNIX are created using the fork() system call. rest of the question not clear.. SiddharthGanguly


List all system call interface?

The system call interface defines all the services of the operating system to the programs. The basis of the different variants of the UNIX operating system is different system call interface. SVID (System V interface definitions ) POSIX standard (IEEE) POSIX 1003.4 is API (Application Program Interface) for the real time systems. www.etherlook.com


What is cu in unix?

'cu' stands for Call Unix. It used to be used for calling dialup services from one Unix to another. Hardly used anymore with networks (which are much faster)


Purpose of sysytem calls?

The purpose of a system call is to provide an interface by which an application program (running in userspace) can request action from the operating system kernel. A system call might, for example, be used to read data from a file or transmit data via a serial port.


What is the purpose of an automatic call distribution system?

The purpose of an automatic call distribution system is to automatically route calls specific terminals. It makes it easier to categorize calls to send to specific agents instead of having them wait in a queue.


In apple which OS is used?

The Apple computer actually runs the Unix operating system but this is hidden from the users by a very good graphical user interface. Apple call their operating system "Mac OS X".


What is the function of PS system call in unix?

I don't believe there is a PS system call; however, there is a 'ps' command that is commonly used to show all (or a select few) processes running on the system and their resource utilization. It is also used so that users can terminate disconnected processes when they don't want them to run anymore.


How UNIX system calls work?

A "System Call" is used for the purpose of accomplishing a privileged task for a user by the operating system since the user cannot directly get access to the file system, hardware, etc. The exact methodology is described in any standard Operating Systems textbook and the discussion of how it works is beyond the scope of this web site.


What is the procedure of execute a script in shell in ubantu?

For any Unix or Linux based operating system, make the text file readable and executable and then invoke (call) it by the file name, which will execute the script.


Who do I call to have my pa system fixed?

Usually the manufactor of the system is the best to fix their machine. They often have service men at their disposal for just this purpose.


What system calls have to be executed by a command interpreter or shell in order to start a new process?

In Unix systems, a fork system call followed by an exec systemcall need to be performed to start a new process. The fork call clones thecurrently executing process, while the exec call overlays a new processbased on a different executable over the calling process.