Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 514 Bytes

File metadata and controls

13 lines (11 loc) · 514 Bytes

Implementing-Threading-Component-In-PintOS

Performed Kernel level programming of the Threading component in PintOS operating system and implemented the following OS operations

  1. Alarm Clock without busy waiting
  2. Priority Scheduler that provides priority donation under required conditions
  3. Multilevel Feedback Queue Scheduler for scheduling of processes at kernel level in the UNIX environment.

Files edited to implement the required operations

  1. timer.c
  2. thread.h
  3. thread.c
  4. sync.h
  5. sync.c