Difference between revisions of "Berkeley Time-Sharing System"

From Computer History Wiki
Jump to: navigation, search
m (Jnc moved page Berkeley Timesharing System to Berkeley Time-Sharing System: Spelling used in contemporary docs)
(Upgrade a bit, add ext links)
Line 1: Line 1:
The '''Berkeley Timesharing System''' was a [[time-sharing]] [[operating system]] for an enhanced [[Scientific Data Systems|SDS]] [[SDS 930|930]] (effectively the prototype of the later [[SDS 940]]).  Primarily written by L. Peter Deutsch, [[Butler Lampson]], and Chuck Thacker.  It was updated by Ann Hardy at [[Tymshare]] and named TYMCOM; later [[TYMCOM-IX]].
+
The '''Berkeley Timesharing System''' was a very influential [[time-sharing]] [[operating system]] for an enhanced [[Scientific Data Systems|SDS]] [[SDS 930|930]] (effectively the prototype of the later [[SDS 940]]).
  
It had an influence on the early design of [[UNIX]]; Ken Thompson was very familiar with it, and some aspects of Unix (e.g. the split between ''fork()'' and ''exec()'') copy how the Berkeley system operated.  
+
It was produced by [[Project GENIE]] at Berkeley; it was primarily written by L. Peter Deutsch, [[Butler Lampson]], and Chuck Thacker. It was later updated by Ann Hardy at [[Tymshare]] and named TYMCOM; later [[TYMCOM-IX]].
  
It was also one of the influences on [[TENEX]].
+
It had a substantial influence on the early design of [[UNIX]]; Ken Thompson had worked on it while he was at Berkeley, and was very familiar with it, and some aspects of Unix (e.g. the split between ''fork()'' and ''exec()'') copy how the Berkeley system operated. It was also one of the influences on [[TENEX]].
 +
 
 +
The [[kernel]] was named the 'Monitor', and the [[command processor]] the 'Executive'. [[Application]] software included an [[interpreter|interpretive]] [[programming language]] called 'CAL', inspired by, and very similar to, [[JOSS]].
  
 
Supposedly, it featured a limited version of [[PCLSRing]]. From Mark Emmer:
 
Supposedly, it featured a limited version of [[PCLSRing]]. From Mark Emmer:
Line 10: Line 12:
  
 
{{semi-stub}}
 
{{semi-stub}}
 +
 +
==External links==
 +
 +
* [http://bitsavers.org/pdf/sds/9xx/940/ucbProjectGenie/ Project Genie] - documentation at [[Bitsavers]]
 +
** [http://bitsavers.org/pdf/sds/9xx/940/ucbProjectGenie/R-21_Time-Sharing_System_Reference_Oct68.pdf Reference Manual Time-Sharing System]
 +
** [http://bitsavers.org/pdf/sds/9xx/940/ucbProjectGenie/mcjones/R-23_CALrefMan.pdf CAL Reference Manual]
  
 
[[Category: Operating Systems]]
 
[[Category: Operating Systems]]

Revision as of 17:17, 10 June 2023

The Berkeley Timesharing System was a very influential time-sharing operating system for an enhanced SDS 930 (effectively the prototype of the later SDS 940).

It was produced by Project GENIE at Berkeley; it was primarily written by L. Peter Deutsch, Butler Lampson, and Chuck Thacker. It was later updated by Ann Hardy at Tymshare and named TYMCOM; later TYMCOM-IX.

It had a substantial influence on the early design of UNIX; Ken Thompson had worked on it while he was at Berkeley, and was very familiar with it, and some aspects of Unix (e.g. the split between fork() and exec()) copy how the Berkeley system operated. It was also one of the influences on TENEX.

The kernel was named the 'Monitor', and the command processor the 'Executive'. Application software included an interpretive programming language called 'CAL', inspired by, and very similar to, JOSS.

Supposedly, it featured a limited version of PCLSRing. From Mark Emmer:

From what I read of the PCLSRing feature, it would be the equivalent of SYSPOPs (System Programmed Operators) in the 940 system. That is, system calls appeared to be atomic while also being interruptible. During an interrupt, the PC would point to the original SYSPOP, perhaps with altered registers for things like counts and memory pointers, reflecting incremental progress with the system call. The user PC would never point to an address within the monitor. On interrupt return, the SYSPOP would be restarted in user space.

External links