distinguish between user mode and kernel mode?
Answer Posted / narendrasairam immadi
When a process is in user space, its system calls are being
intercepted by the tracing thread. When it's in the kernel,
it's not under system call tracing. This is the distinction
between user mode and kernel mode.
The transition from user mode to kernel mode is done by the
tracing thread. When a process executes a system call or
receives a signal, the tracing thread forces the process to
run in the kernel if necessary and continues it without
system call tracing
| Is This Answer Correct ? | 28 Yes | 5 No |
Post New Answer View All Answers
Is grep faster than awk?
What does grep v do?
Explain the terms ‘system calls’ and ‘library functions’ with respect to unix commands?
Which unix command lists files/folders in alphabetical order?
What do know about tee command and its usage?
What is .sh file?
Which command is used to kill the last background job?
Does cp command overwrite files?
What is rmdir command?
What is the use of the tee command?
Differentiate cat command from more command.
What does this command do,"$more readme.txt“?
What is the command to compare two files in unix?
What is the use of finger command?
What does pipe () return?