888 views
0 votes
0 votes
  1. for kernel-level threads, a system call can block the entire process.

  2. User level threads can be scheduled independently.

  3. Kernel level threads are transparent to the user level threads.

 

Which of them is True?

1 Answer

Related questions

0 votes
0 votes
3 answers
1
jayadev asked Feb 1, 2022
952 views
Consider the following program segment of C-programming language:#include<stdio.h int main() { if (fork() || fork()) fork(); printf("GATE\n"); return 0; } Number of times...
0 votes
0 votes
1 answer
2
jayadev asked Dec 7, 2021
433 views
Why the operating system has the knowledge about kernel level threads but not about user level threads?
1 votes
1 votes
1 answer
3
jayadev asked Dec 6, 2021
380 views
Does kernel level threads have separate PCB(process control block)?
9 votes
9 votes
2 answers
4
junaid ahmad asked Jul 13, 2017
838 views
if(fork() && fork()) {fork();}if(fork()||fork()) {fork();fork();}printf("XYZ");How many time XYZ gets printed ?