adspace


What happens on a system call?

Answer Posted / Sarvesh Kumar Satyarthi

A system call is a request made by a program to the operating system for services that the program cannot provide itself. It allows programs to access hardware, manage processes, interact with the file system, and perform various other tasks.nnWhen a system call is invoked, the control flow of the program temporarily transfers from user mode (where the program runs) to kernel mode (where the operating system manages resources). Once the system call has been processed, control returns to the program.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Hello all, This is my assignment on shell scripting, can anyone help me regarding this ? Create a shell script which connects to the database In second shell script include the first script for the DB connection Create a table (PRADEEP_DATA) with 2 columns (name, value) In Third shell script include the first script for the DB connection And insert/delete the values from the Table, by accepting input from the user This functionality should be a menu driven Program: 1) Insert to the database a. Name b. value 2)Delete from the database a.Name b.value Exception handling needs to be taken care.

2325