The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
* [TUHS] Windows roots and Unix influence (was Re: Happy birthday, Ken Thompson!)
@ 2018-02-04  0:37 Dan Cross
  2018-02-04  2:59 ` Nemo Nusquam
                   ` (3 more replies)
  0 siblings, 4 replies; 64+ messages in thread
From: Dan Cross @ 2018-02-04  0:37 UTC (permalink / raw)


On Sat, Feb 3, 2018 at 5:59 PM, Dave Horsfall <dave at horsfall.org> wrote:

> On Sat, 3 Feb 2018, Arthur Krewat wrote:
>
>> I would imagine that Windows wouldn't be what it is today without UNIX.
>> Matter of fact, Windows NT (which is what Windows has been based on since
>> Windows ME went away) is really DEC's VMS underneath the covers at least to
>> a small extent.
>>
>
> I thought that NT has a POSIX-y kernel, which is why it was so reliable?
> Or was VMS a POSIX-like system?  I only used it for a couple of years in
> the early 80s (up to 4.0, I think), and never dug inside it; to me, it was
> just RSX-11/RSTS-11 on steroids.


The design of the original NT kernel was overseen by Dave Cutler, of VMS
and RSX-11M fame, and had a very strong and apparent VMS influence. Some
VAX wizards I know told me that they saw a lot of VMS in NT's design, but
that it probably wasn't as good (different design goals, etc: apparently
Gates wanted DOS++ and a quick time to market; Cutler wanted to do a *real*
OS and they compromised to wind up with VMS--).

It's true that there was (is? I don't know anymore...) a POSIX subsystem,
but that seemed more oriented at being a marketing check in the box for
sales to the US government and DoD (which had "standardized" on POSIX and
made it a requirement when investing in new systems).

Now days, I understand that one can run Linux binaries natively; the
Linux-compatibility subsystem will even `apt-get install` dependencies for
you. Satya Nadella's company isn't your father's Microsoft anymore. VSCode
(their new snazzy editor that apparently all the kids love) is Open Source.

Note that there is some irony in the NT/POSIX thing: the US Government
standardized on Windows about two decades ago and now can't seem to figure
out how to get off of it.

A short story I can't resist telling: a couple of years ago, some folks
tried to recruit me back into the Marine Corps in some kind of technical
capacity. I asked if I'd be doing, you know, technical stuff and was told
that, since I was an officer no, I wouldn't. Not really interested. I ended
up going to a bar with a recon operator (Marine special operations) to get
the straight scoop and talking to a light colonel (that's a Lieutenant
Colonel) on the phone for an hour for the hard sell. Over a beer, the recon
bubba basically said, "It was weird. I went back to the infantry." The
colonel kept asking me why I didn't run Windows: "but it's the most popular
operating system in the world!" Actually, I suspect Linux and BSD in the
guise of iOS/macOS is running on a lot more devices than Windows at this
point. I didn't bother pointing that out to him.

Would VMS become what it was without UNIX's influence? Would UNIX become
>> what it later was without VMS?
>>
>> Would UNIX exist, or even be close to what it became without DEC?
>>
>
> I've oft wondered that, but we have to use a new thread to avoid
> embarrassing Ken :-)
>

The speculation of, "what would have happened?" is interesting, though of
course unanswerable. I suspect that had it not been for Unix, we'd all be
running software that was closer to what you'd find on a mainframe or RT-11.

        - Dan C.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://minnie.tuhs.org/pipermail/tuhs/attachments/20180203/4435a1e3/attachment-0001.html>


^ permalink raw reply	[flat|nested] 64+ messages in thread
* [TUHS] Windows roots and Unix influence (was Re: Happy birthday, Ken Thompson!)
@ 2018-02-05 15:20 Doug McIlroy
  0 siblings, 0 replies; 64+ messages in thread
From: Doug McIlroy @ 2018-02-05 15:20 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1663 bytes --]

> My experience is that the problems involved in making a program faster are 
> often quite interesting and fun to work on.  But the problems making things
> fit in a small space are, IMHO, really deadly.

First make things "as simple as possible, but no simpler" (Einstein). Ken and
Dennis not only cut out fat, they also found generalizations that combined
traditionally disparate features, so the new whole was smaller (and more 
comprehensible) than the sum of the old parts. The going gets tough in the 
presence of constraints on space or time. Steve's perception, I think, is 
colored by the experience of facing hard limits on space, but not on time.

Describing one complication of hard time constraints, John Kelly used to
say that the Packard Bell 250 was "the only machine I ever used where
you transfer to a time of day rather than a memory location". (The delay-
line memory had two instruction formats: one was operation + address-of-
next-instruction, the other was just the operation--the next instruction
being whatever came out of the delay line when the operation ended. The 
latter mode minimized both execution time and code space, but the attention
one had to pay to time was, to borrow Steve's phrase, "really deadly".)

Design tradeoffs for efficiency pose an almost moral conundrum:
whether to make things fast or make them easy. For example, the
classic Unix kernel typically did table lookup by linear search,
whereas Linux (when I last looked) typically used binary search. 
The price of Linux's choice is that one must take care to keep 
the tables sorted. Heavy discipline has to be imposed on making
entries and deletions.

Doug


^ permalink raw reply	[flat|nested] 64+ messages in thread

end of thread, other threads:[~2018-02-15 13:23 UTC | newest]

Thread overview: 64+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-04  0:37 [TUHS] Windows roots and Unix influence (was Re: Happy birthday, Ken Thompson!) Dan Cross
2018-02-04  2:59 ` Nemo Nusquam
2018-02-04  5:06   ` Wesley Parish
2018-02-04  5:18     ` Warner Losh
2018-02-05 19:43     ` Paul Winalski
2018-02-05 21:19       ` Michael Kjörling
2018-02-06  0:37         ` Steve Nickolas
2018-02-06  0:45           ` Warner Losh
2018-02-06  9:14           ` Wesley Parish
2018-02-04  9:14   ` Angelo Papenhoff
2018-02-04 14:15     ` arnold
2018-02-04 17:21     ` Ron Natalie
2018-02-04 20:05       ` Dan Cross
2018-02-04 20:55         ` Nemo
2018-02-04 20:57           ` Warner Losh
2018-02-04 20:59           ` Jon Steinhart
2018-02-04 22:12             ` Clem Cole
2018-02-05  1:32             ` William Cheswick
2018-02-05  1:44               ` Dave Horsfall
2018-02-04 21:04         ` Toby Thain
2018-02-04 22:22           ` Andy Kosela
2018-02-04 22:43         ` Dave Horsfall
2018-02-04 22:54           ` George Michaelson
2018-02-05  3:35           ` Ron Natalie
2018-02-05  3:40           ` Dan Cross
2018-02-05 13:48             ` William Cheswick
2018-02-05 14:31               ` Ron Natalie
2018-02-05 21:51               ` Dave Horsfall
2018-02-05 21:57                 ` Ron Natalie
2018-02-05 22:31                   ` Grant Taylor
2018-02-05 23:16                     ` Arthur Krewat
2018-02-05 23:49                       ` Grant Taylor
2018-02-06 17:42                       ` Ron Natalie
2018-02-06 18:23                         ` Arthur Krewat
2018-02-05 23:10                   ` Charles Anthony
2018-02-05 23:20                   ` Arthur Krewat
2018-02-05 23:28                     ` Dave Horsfall
2018-02-05 23:36                       ` Arthur Krewat
2018-02-05 23:52                         ` George Michaelson
2018-02-06 14:52                 ` Steffen Nurpmeso
2018-02-05 23:18               ` Lyndon Nerenberg
2018-02-06 21:51               ` Dan Cross
2018-02-06 23:14                 ` Nemo Nusquam
2018-02-06 23:22                   ` Warner Losh
2018-02-07  3:03                     ` Dave Horsfall
2018-02-07  1:23                 ` Dave Horsfall
2018-02-07  1:33                   ` Clem Cole
2018-02-07  1:54                   ` Dan Cross
2018-02-07 18:01                     ` Tony Finch
2018-02-09  2:35                       ` Wesley Parish
2018-02-07 18:50                     ` Bakul Shah
2018-02-15 13:23                     ` Tim Bradshaw
2018-02-05  0:27         ` Kurt H Maier
2018-02-05  0:41     ` Robert Brockway
2018-02-04  9:11 ` Donald ODona
2018-02-04 23:25 ` Dave Horsfall
2018-02-04 23:46   ` Bakul Shah
2018-02-04 23:58     ` Dave Horsfall
2018-02-05  0:06 ` Robert Brockway
2018-02-05  5:37   ` Steve Johnson
2018-02-05  5:53     ` Greg 'groggy' Lehey
2018-02-05 10:49       ` Ron Natalie
2018-02-05  6:57     ` Robert Brockway
2018-02-05 15:20 Doug McIlroy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).