



































Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
During the course of work of the Operating Systems, Distributed Computation, we learn the core of the programming. The main points disucss in these lecture slides are:Process Concept, Process Scheduling, Operations on Processes, Cooperating Processes, Interprocess Communication, Communication in Client-Server Systems, Program Counter, Process Control Block, Scheduling Queues
Typology: Slides
1 / 43
This page cannot be seen from the preview
Don't miss anything!




































Process Concept Process Scheduling Operations on Processes Cooperating Processes Interprocess Communication Communication in Client-Server Systems
struct task_struct {
pid_t pid; /* process identifier / long state; / state of the process / unsigned int time_slice; / scheduling info / struct task_struct * parent; / parent process / struct list_head children; / this process’s children */ struct files_struct files; / list of open files */ struct mm_struct mm; / address space of the process */
};