answersLogoWhite

0


Best Answer

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.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is exec system call of UNIX operating system?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Performing Arts

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.


What are five well known operating system?

Apple OS X Microsoft Windows Unix Linux VAX/VMS OS4000 IBM System/360 DOS IBM OS/2 RISK OS Free RTOS OS 2200 Exec 8 (There are lots more)


What is the beginning of the operating system?

I cannot tell what your asking by the question. The first commercial sold Operating System was the EXEC series by UNIVACThe blue screen that appears when you press F(something) during the start up of your computer is called the System BIOS.


What are examples of an operation system?

You mean an Operating System. Examples include Windows 7, Apple OS X, NeXTSTEP, iOS, Ubuntu, Solaris, Android. Chromium OS, Windows CE, VxWorks, GNU, Mach, NetWare, Plan 9, Palm OS, Domain/OS, VAX VMS, OpenVMS, EXEC-8, VM, Atari TOS, AmigaOS, TRSDOS, UCSD p-System, ISIS-II, CP/M, RSX-11, RT-11, HT-11, DMS, Berkeley Timesharing System, COS, NOS, Multics, z/OS, 360 TOS, 360 DOS, CTSS, BESYS, IBSYS.


Where is brian marshall a one time british comedian but now a script writer who appeared on BBC television in the Lena zavaroni show?

Hi this IS Brian Marshall. Yes I did become a scriptwriter for the Krankies TV series and also Keith Harris. I then became and agent and manager for Sheila Ferguson form the 3 Degrees, Wayne Sleep Ballet Dancer, Dave Benson Phillips Childrens TV Presenter of Get YUour Own Back which I devised for Dave and the BBC. I was also an exec with Qdos entertainments writing and directing major Pantos. I stopped trading about two years ago and now paint watercolours. Ta for asking!

Related questions

Why Mac OS 10.3.9 have exec functions of Unix-like operating systems?

The reason for the exec functions being same/similar is because the Mac OS has its roots in variants of the Unix kernel.


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.


Define types of operating system?

Generally, operating systems are separated into Unix and non-Unix.Some examples:Unix:Original UnixLinuxSolarisBSDFree BSDMac OS XChrome OSNon-Unix: CP/MAmigaOSQDOS (Quick and Dirty Operating System)MS-DOSWindowsIBM OS/2BeOSHaikuReactOSMac OS (1 through 9)VAX VMSOpenVMSMultics (partially inspired Unix)IBM 360 DOSIBM 360 TOSIBM 360 CMSIBM 360 VMUnivac EXEC 8DEC BATCH-11/DOS-11DEC RSTS/EMUMPSPlan 9 from Bell LabsHarvey OS


What is use of -exec in find command of unix?

The -exec option executes the following command on a target of the 'find' command.


When does a call to exec return in UNIX?

A call to the exec() family of functions in UNIX does not normally return to the calling process. This is because the call replaces the invoking process'es image, thus there is nothing to return to. If an error does occur, exec() returns -1, and sets an error value that can be interrogated, but the answer to the question is, usually, never. The normal paradigm for launching a process and getting control back, such as by the shell, is to call fork(), which splits the invoking process into two identical processes, one continuing to monitor the other. The other process then calls exec(), replacing itself. When it exits, the first process can detect that and retrieve its return value.


What are five well known operating system?

Apple OS X Microsoft Windows Unix Linux VAX/VMS OS4000 IBM System/360 DOS IBM OS/2 RISK OS Free RTOS OS 2200 Exec 8 (There are lots more)


Types of system call in process management?

fork, exec, wait, exit


How do you call an exe file in c source code?

system, exec*, spawn*, CreateProcess, ShellExecute...


A router has a valid operating system and config stored in nvram when the router boots up which mode will display?

user exec mode


What is execlp?

execlp() is a system call on UNIX systems (within the "exec" family of system calls declared in unistd.h) that loads an executable and begins executing it within the current process. execlp() is unique from other "exec" calls in that PATH environment variable is searched (so you need not provide the full path of the executable) and the command line arguments are passed in using variable size argument list (... in C) as opposed to an array of arguments.


What is the beginning of the operating system?

I cannot tell what your asking by the question. The first commercial sold Operating System was the EXEC series by UNIVACThe blue screen that appears when you press F(something) during the start up of your computer is called the System BIOS.


How do you execute a program in c?

Call functions like exec*, spawn*, system, ShellExecute, CreateProcess... most of them is platform-dependent.