Summary by James Lujan An Experimental Time-Sharing System by Fernando J. Corbato, Marjorie Merwin-Daggert, and Robert C. Daley Type of Paper -------------- - Big idea (more than 1 user on the machine at a time!!) Summary ----------- This paper describes the design and implementation of an experimental Time-Sharing system which allows more than 1 user to interactively use the computer at a time. The paper, in addition to mentioning a simple round-robin scheduler, describes an algorithm for multi-level feedback queue scheduling. Key Ideas ------------ - Current (pre-1962) debugging is a major problem The goal of this paper is to present a system which allows multiple users to simultaneously use a computer without being prohibitively expensive. The paper hints several times that the underlying motivation for this goal is that current debugging techniques are slow and costly. As machines get more powerful, programmers tackle more difficult problems, which exacerbates the difficulty of debugging. An interactive system would allow the programmer to debug at the machine in a more efficient, cost-effective manner. - Memory protection and privileged supervisor This paper addresses the problems of having multiple user programs running "simultaneously" in memory. The authors stress the necessity of some form of memory protection, as well as the importance of having a privileged supervisor program handling all I/O. These two concepts help prevent the programs from stepping on each other as they are running. - Multiplicity of tape drives Tapes are a (relatively) slow, sequential form of access. Having all of the users share the same tape drive while running simultaneously would be excruciatingly inefficient. To alleviate this problem each user is given 2 tapes (one for private files and one for memory dumps). The supervisor is also given its own tape, that contains most of the commonly use user programs. - Multi-Level feedback scheduling for graceful degradation The authors recognize that at saturation, the simple round-robin scheme effectively collapses due to the process swapping costs. In response to this problem, the multi-level feedback queue scheduling algorithm is introduced which adjusts the processes priority based on size and computation time. Small, quick-running programs are given priority over large and slow programs. General Comments/Observations ------------------------------ - Although the paper mentions that the complete independence of each user was by design, it recognizes that there are cases where multiple users running the same program (or some type of user communication) would be desirable. - There are no actual, quantitative experiments run comparing simple round-robin with the multi-level feedback queueing scheme. Although the mathematical analysis is informative, it is not entirely convincing (eg. it doesn't account for the extra overheard of implementing the additional complexity). - There is no satisfying solution to the potential starvation problem that can occur with the multi-level feedback algorithm. It is mentioned, but not resolved. - This paper seems to introduce a lot of important operating system concepts. We have topics ranging from memory-protecting, software traps, hardware interrupts, scheduling algorithms, etc... I'm curious how many of the ideas presented in this paper had already been in use prior to the implementation of the system.