/Scheduling-Algoritm

📌 C 언어로 구현한 스케줄링 알고리즘

Primary LanguageC

⏳ Scheduling-Algorithm

Hits

  • This repository contains the implementations on process scheduling, which is a key role of the operating system.


📌 List of Scheduling algorithm


📌FCFS: First Come First Served (Non-preemptive)
📌SJF: Shortest Job First (Non-preemptive)
📌SRJF: Shortest Remaining Job First (Preemptive)
📌RR: Round Robin (Preemptive)

📌 Functions


  • isEmpty
  • isFull
  • initQueue
  • enQueue
  • deQueue
  • pickProcess
  • monitProcess
  • rotateProcess
  • set_schedule
  • read_proc_list
  • do_schedule
  • print_performance

⚙️ Development stack


  • Language : C

👬 Contributor