Advertisement
yinyangmatrix

CGS3763 Spring 2015 Notes

Jan 12th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. SPRING 2015
  2. CGS3763: Operating System Concepts
  3. Lecturer: Professor Euripides Montagne
  4. MoWeFr 10:30 AM - 11:20 PM
  5.  
  6. Day 1:
  7.  
  8. Lecture Topics: Operating System Topics, Textbook, Syllabus
  9. Notes:
  10.  
  11. -Discussion about Homework 0.
  12. An operating system is an event-driven program. Handles system resources efficiently. It is an interface between user and system. Creates an environment for application programs to run.
  13.  
  14. -Discussion about Textbook.
  15.  
  16. -Discussion about Syllabus.
  17. Course learning outcomes:
  18. -Understand the interaction between the hardware and the operating system through the interrupt handling mechanism
  19. -Understand the concept of process and threads including their implementation
  20. -Understand process synchronization and deadlock
  21. -Understand CPU and disk scheduling
  22. -Have an understanding of memory organization and virtual memory
  23. -Understand file system
  24.  
  25. -> Algorithm:
  26. Global description: a series of steps to follow a recipe// A procedure or formula to solve a problem.
  27.  
  28. -> Program:
  29. Coded instructions to control the operation of a computer
  30.  
  31. ////////How does a program and algorithm relate?
  32. We have to express the algorithm in a program language to solve the expression. When we compile the program and run the program in computer, it is a process.
  33.  
  34. -> Process.
  35.  
  36. Concurrency:
  37. Multiple processes running in the memory at the same time. -> Processor sharing. (Only one processor)
  38.  
  39. Virtual (Written??) Memory:
  40. A technique to run programs whose logical memory is larger than physical.
  41.  
  42. /////MOVE THIS TO A DIFFERENT SECTION IN DOCUMENT
  43. The Semester Plan (Tentative)
  44. Operating System Fundamentals
  45. Computer System Structures
  46. Interrupt Handling
  47. (in progress)
  48.  
  49. Grade Policy:
  50. 25% - Exam #1 - closed book, closed notes
  51. 25% - Exam #2 - closed book, closed notes
  52. 30% - Final Exam - closed book, closed notes
  53. 20% - Assignments
  54.  
  55. Important Dates:
  56. Classes Begin - Monday, January 12, 2015
  57. First Midterm exam - Wednesday, February 18, 2015 and Friday, February 20, 2015
  58. Withdrawal Date: Tuesday, March 24, 2015
  59. Second Midterm Exam - Wednesday, April 1, 2015, and Friday, April 3, 2015
  60.  
  61. Homework: Homework 0. (Attendance) Get textbook.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement