Free Republic
Browse · Search
General/Chat
Topics · Post Article

Skip to comments.

Remembering Dennis Ritchie
ReadWrite Enterprise ^ | 13 October 2011 | Joe Brockmeier

Posted on 10/13/2011 11:41:40 AM PDT by ShadowAce

dennis-ritchie.jpgDennis M. Ritchie, co-creator of UNIX and father of the C programming language, died this past weekend after a long illness. It's no exaggeration to say that without Ritchie, modern computing would not be what it is today.

Often known as "dmr," Ritchie was born in Bronxville, NY in 1941. He studied at Harvard University, initially focusing on physics. Ritchie said that he entered computing because "my undergraduate experience convinced me that I was not smart enough to be a physicist, and that computers were quite neat."

"As a result, C became in effect a universal assembler: close enough to the machine to be cost effective, but far enough away that a C program could be compiled for and run well on any machine." Brian Kerninghan

Ritchie joined Bell Labs in 1967 and worked with a group of developers, including Ken Thompson, to create UNIX, the first version of which was released in 1969. Initially called UNICS (following a system called MULTICS) was written in a low-level assembly language by Thompson. According to Thompson, Ritchie's contribution to UNIX was "mostly on the language and the I/O system."

The Creation of C

The language, of course, was C. So named because it followed the B (for Bell Labs) programming language, C is a higher-level language designed to allow cross-platform programming. To make it portable to different hardware, it was re-written in C, and released in 1971 as UNIX.

k-and-r.jpg

Brian Kerninghan said that with C "Dennis managed to find a perfect balance between expressiveness and efficiency. It was just right for creating systems programs like compilers, editors, and even operating systems. C made it possible for a programmer to get close to the machine for efficiency but remain far enough away to avoid being tied to a specific machine... As a result, C became in effect a universal assembler: close enough to the machine to be cost effective, but far enough away that a C program could be compiled for and run well on any machine."

The concept of a multi-platform language and operating system no doubt seem, well, unexceptional today. However, at the time, it was unheard of, as Herb Sutter notes.

"Before C, there was far more hardware diversity than we see in the industry today. Computers proudly sported not just deliciously different and offbeat instruction sets, but varied wildly in almost everything, right down to even things as fundamental as character bit widths... There was no such thing as a general-purpose program that was both portable across a variety of hardware and also efficient enough to compete with custom code written for just that hardware."

Tim Bray writes, "Unix combines more obvious-in-retrospect engineering design choices than anything else I've seen or am likely to see in my lifetime... It is impossible – absolutely impossible – to overstate the debt my profession owes to Dennis Ritchie. I've been living in a world he helped invent for over thirty years."

The combination of C and UNIX have been at the core of computing ever since, and are (in slightly altered form) still going strong today. UNIX, as a portable and multi-user operating system, became extremely popular. AT&T was prohibited from entering the computer market at the time UNIX was created, so it was freely spread far and wide to businesses, schools, and within the U.S. government.

ritchie-and-thompson.jpg

UNIX ultimately spawned dozens of versions, including SunOS and Solaris, AIX, HP-UX, NeXTSTEP, BSD, A/UX, Mac OS X and many others. UNIX inspired the GNU Project and Linux, though they are not derived from the same codebase.

C is still widely used, as are its direct descendants; C++, Perl, Objective-C, Java, C#, PHP and many others.

K&R

The popularity of C has been helped by The C Programming Language, often referred to as K&R for its co-authors: Kerninghan and Ritchie.

The book was published in 1978, and is a comprehensive guide to C in less than 300 pages. Kerninghan said that he "twisted Dennis's arm into writing it" which was "probably the smartest thing I ever did." Kerninghan called Ritchie "an exceptionally clear and elegant writer."

"It is impossible – absolutely impossible – to overstate the debt my profession owes to Dennis Ritchie. I've been living in a world he helped invent for over thirty years." Tim Bray

K&R continues to be considered an important guide to C. It was revised in 1988 to accommodate the ANSI C standard, and has been translated into more than 20 languages. Kerninghan said that the book has been successful "in large part because of the success of C, though it probably helped that the book, like the language, is rather small and simple, and made it possible for people to do useful things quickly."

The book made popular the now-obligatory "Hello World!" example, which explains how to create a small program that prints "Hello World!" to the display.

Later Career

Later in his career, Ritchie continued in computer research and contributed to the creation of Plan 9 and Inferno distributed operating systems.

While neither Plan 9 or Inferno have achieved widespread popularity, Inferno has been released as open source and is under continued development.

Ritchie retired as the head of Lucent Technologies System Software Research Department in 2007. He received numerous awards for his achievements, including the U.S. National Medal of Technology in 1999 in conjunction with Thompson.

Rob Pike, who worked with Ritchie at Bell Labs and on the Plan 9 and Inferno projects, reported Ritchie's passing yesterday, saying, "He was a quiet and mostly private man, but he was also my friend, colleague, and collaborator, and the world has lost a truly great mind."


TOPICS: Computers/Internet
KEYWORDS: apple; c; ritchie; stevejobs

1 posted on 10/13/2011 11:41:47 AM PDT by ShadowAce
[ Post Reply | Private Reply | View Replies]

To: rdb3; Calvinist_Dark_Lord; GodGunsandGuts; CyberCowboy777; Salo; Bobsat; JosephW; ...

2 posted on 10/13/2011 11:42:29 AM PDT by ShadowAce (Linux -- The Ultimate Windows Service Pack)
[ Post Reply | Private Reply | To 1 | View Replies]

Comment #3 Removed by Moderator

To: ShadowAce

free(DennisRitchie);


4 posted on 10/13/2011 11:45:28 AM PDT by ctdonath2 ($1 meals: http://abuckaplate.blogspot.com/)
[ Post Reply | Private Reply | To 1 | View Replies]

To: ctdonath2

Doesn’t this require a malloc first???

Seriously, I learned C in around 1985 while working bringing up the first hardware I designed that was part of a Unix box. That went on to be what I did for another 10 years. Knowing C was a fundamental capability of being able to deal with debugging the hardware I designed by writing my own test code, and communicating with the OS programmers and understanding what they were trying to get working.

Then came Linux - also built on “C” and emulating the entire Unix ecosystem. In my mind - we owe much more to Dennis that we do to Steve Jobs!


5 posted on 10/13/2011 11:56:41 AM PDT by fremont_steve
[ Post Reply | Private Reply | To 4 | View Replies]

To: ShadowAce

sad_news


6 posted on 10/13/2011 11:56:55 AM PDT by US Navy Vet (Go Packers! Go Rockies! Go Boston Bruins! See, I'm "Diverse"!)
[ Post Reply | Private Reply | To 1 | View Replies]

To: fremont_steve
"we owe much more to Dennis that we do to Steve Jobs!"

while [ true ]

do

echo "ditto"

done

7 posted on 10/13/2011 12:12:22 PM PDT by red-dawg
[ Post Reply | Private Reply | To 5 | View Replies]

To: ShadowAce
One of the real innovators that marketers like Steve Jobs and Bill Gates have pretended to be part of all these years.
8 posted on 10/13/2011 12:16:31 PM PDT by MrEdd (Heck? Geewhiz Cripes, thats the place where people who don't believe in Gosh think they aint going.)
[ Post Reply | Private Reply | To 1 | View Replies]

To: ShadowAce

That DEC computer (PDP 10, perhaps?) in this image probably had less memory than the number of pixels in the image itself. It certainly had, at most, one percent or so of the amount of memory in the typical cell phone today, which are much smaller than the paper tape reader on the left side of those ASR33 teletype terminals.

The DEC tape units to the right of Dennis Richie's head each held (if memory serves) about 330K characters, and cost several thousand dollars in mid-1970s money (when a gallon of gas cost 36 cents per gallon or so).

9 posted on 10/13/2011 12:50:53 PM PDT by Steely Tom (Obama goes on long after the thrill of Obama is gone)
[ Post Reply | Private Reply | To 1 | View Replies]

To: ShadowAce

That DEC computer (PDP 10, perhaps?) in this image probably had less memory than the number of pixels in the image itself. It certainly had, at most, one percent or so of the amount of memory in the typical cell phone today, which are much smaller than the paper tape reader on the left side of those ASR33 teletype terminals.

The DEC tape units to the right of Dennis Richie's head each held (if memory serves) about 330K characters, and cost several thousand dollars in mid-1970s money (when a gallon of gas cost 36 cents per gallon or so).

10 posted on 10/13/2011 12:51:07 PM PDT by Steely Tom (Obama goes on long after the thrill of Obama is gone)
[ Post Reply | Private Reply | To 1 | View Replies]

To: ShadowAce
The computing world wouldn't be what it is today without Dennis Ritchie.

You can see the influence of C in the language conventions of the major programming languages in use today - C++, Java, C#, Objective-C, Perl.

As for Unix - it's the basis of the modern computer operating system. Linux (obviously), Mac OS X (obviously), and even Windows NT and it's descendants like Windows 7 - here's Bill Gates' acknowledgment:

"And through Windows NT, you can see it throughout the design. In a weak sense, it is a form of Unix. There are so many of the design decisions that have been influenced by that environment. And that’s no accident. I mean, we knew that Unix operability would be very important and we knew that the largest body of programmers that we’d want to draw on in building Windows NT applications would certainly come from the Unix base."

And remember, Ritchie kept his opening curly brace to the right of the function declaration, not below it. If it was good enough for K&R, it's good enough for us =).
11 posted on 10/13/2011 1:07:17 PM PDT by AnotherUnixGeek
[ Post Reply | Private Reply | To 1 | View Replies]

To: AnotherUnixGeek


And remember, Ritchie kept his opening curly brace to the right of the function declaration, not below it. If it was good enough for K&R, it’s good enough for us =).”

Yes - but if you knew Pascal first.... you put it below - because that is where you would put the “begin” I did, thus do ;-)


12 posted on 10/13/2011 1:53:18 PM PDT by fremont_steve
[ Post Reply | Private Reply | To 11 | View Replies]

To: ShadowAce

We lost another great one... prayers for the family and loved ones...


13 posted on 10/13/2011 2:03:41 PM PDT by GOPJ (Occupy Wall Street Zombies Lastest Chant: “You Can Have Sex With Animals”)
[ Post Reply | Private Reply | To 1 | View Replies]

To: AnotherUnixGeek
"And through Windows NT, you can see it throughout the design. In a weak sense, it is a form of Unix. There are so many of the design decisions that have been influenced by that environment. And that’s no accident. I mean, we knew that Unix operability would be very important and we knew that the largest body of programmers that we’d want to draw on in building Windows NT applications would certainly come from the Unix base."

I thought Windows NT was based more on the VMS operating system?
14 posted on 10/13/2011 2:07:25 PM PDT by jaydubya2
[ Post Reply | Private Reply | To 11 | View Replies]

To: jaydubya2
I thought Windows NT was based more on the VMS operating system?

I believe you're right - wasn't the project lead for NT a former DEC engineer who developed VMS? I think the point Gates was making was that Unix also had a major conceptual influence on NT, along with some bits of direct compatibility like the POSIX subsystem and sockets based on the Berkeley Unix socket model.
15 posted on 10/13/2011 3:14:08 PM PDT by AnotherUnixGeek
[ Post Reply | Private Reply | To 14 | View Replies]

To: ShadowAce

Thanks for posting this, I had not heard


16 posted on 10/13/2011 4:24:17 PM PDT by billphx
[ Post Reply | Private Reply | To 1 | View Replies]

To: MrEdd
One of the real innovators that marketers like Steve Jobs and Bill Gates have pretended to be part of all these years.

Dennis Ritchie. The shoulders Steve Jobs stood on.

17 posted on 10/13/2011 6:21:17 PM PDT by Bloody Sam Roberts (Attacking Wall Street because you're jobless is like burning down Whole Foods because you're hungry.)
[ Post Reply | Private Reply | To 8 | View Replies]

To: AnotherUnixGeek

Dave Cutler. I’m sure Ritchie and UNIX had a great influence on WNT also. I work with VMS daily. I just wish it could get more of a foothold in the industry. Its a great OS.


18 posted on 10/13/2011 7:15:51 PM PDT by jaydubya2
[ Post Reply | Private Reply | To 15 | View Replies]

Disclaimer: Opinions posted on Free Republic are those of the individual posters and do not necessarily represent the opinion of Free Republic or its management. All materials posted herein are protected by copyright law and the exemption for fair use of copyrighted works.

Free Republic
Browse · Search
General/Chat
Topics · Post Article

FreeRepublic, LLC, PO BOX 9771, FRESNO, CA 93794
FreeRepublic.com is powered by software copyright 2000-2008 John Robinson