From 4b943f97bf90ef311e4ad95388a04263977e527a Mon Sep 17 00:00:00 2001 From: Parth Naik Date: Fri, 5 Dec 2014 15:05:08 +0530 Subject: [PATCH] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index a5c6266..cd3a35e 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,11 @@ Scheduling ========== Implemented scheduling algorithms using C and Pthread + +This program implements scheduling algorithms using pthreads in c language. When user executes a file named scheduling.c, first it will ask for input file. After entering any filename by user, it asks user about PID, Burst time & Priority and this data stored in the input file. All the work stated above, creating the file, data input and store is done by one thread. +Now, second thread opens the file, reads the data and asks you to for desired output method. + +Algorithms implemented: +FCFS +Round Robin +Shortest job first