384 views

1 Answer

1 votes
1 votes
Yes , kernal have pcb as well as tcb(thread control block)

Related questions

0 votes
0 votes
3 answers
1
jayadev asked Feb 1, 2022
987 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
440 views
Why the operating system has the knowledge about kernel level threads but not about user level threads?
9 votes
9 votes
2 answers
3
junaid ahmad asked Jul 13, 2017
852 views
if(fork() && fork()) {fork();}if(fork()||fork()) {fork();fork();}printf("XYZ");How many time XYZ gets printed ?
11 votes
11 votes
4 answers
4
junaid ahmad asked Jul 13, 2017
1,030 views
int main() { if(fork() == 0) printf("GATE2018"); if(fork() == 0) printf("GATE2018"); }How many times GATE2018 printed?