vote up 7 vote down star
5

I was just wondering who knows what programming languages Windows, Mac OS X and Linux are made up from and what languages are used for each part of the OS (ie: Kernel, plug-in architecture, GUI components, etc).

I assume that there are multiple languages for each and obviously I know the Linux kernel is written in C.

I'm totally guessing here that Mac OS X contains a lot of Objective-C code as it is Apple's language derived from NeXT.

Windows, I have heard contains C, C++ and Intel Assembly. Do Linux or Mac OS contain any Assembly code?

Also, are there scripting languages like Ruby, Python, etc used by the OS developers for scripting parts of the OS? What parts of the OS would be written in each language?

flag

8 Answers

vote up 16 vote down check
  • Windows: C++, kernel is in C
  • Mac: Objective C, kernel is in C (IO PnP subsystem is Embedded C++)
  • Linux: Most things are in C, many userland apps are in Python, KDE is all C++
link|flag
vote up 1 vote down

Mac OS X uses large amounts of C++ inside some libraries, but it isn't exposed as they're afraid of the ABI breaking.

link|flag
vote up 1 vote down

Windows is obviously not written in C# (!)

Simply see the source code of Windows and you'll see...

link|flag
1  
"Simply see the source code of Windows" if you're one of the few that is allowed/able to do that ... – Joachim Sauer Feb 25 at 15:24
There are a lot of Windows source code parts in Torrents, also a few reviews of it – abatishchev Feb 25 at 15:28
1  
Parts of the Windows code have leaked out, years ago. See for instance this old thread: <kuro5hin.org/story/2004/…;. :) – unwind Feb 25 at 15:29
vote up 1 vote down

http://www.lextrait.com/vincent/implementations.html

this should helped

link|flag
vote up 2 vote down

I have read or heard that Mac OS X is written mostly in Objective-C with some of the lower level parts, such as the kernel, and hardware device drivers written in C. I believe that Apple "eat(s) its own dog food", meaning that they write Mac OS X using their own Xcode Developer Tools. The GCC(GNU Compiler Collection) compiler-linker is the unix command line tool that xCode used for most of its compiling and/or linking of executables. Among other possible languages, I know GCC compiles source code from the C, Objective-C, C++ and Objective-C++ languages.

link|flag
vote up 1 vote down

The Linux kernel is mostly written in C (and a bit of assembly language, I'd imagine), but some of the important userspace utilities (programs) are shell scripts written in the Bash scripting language. Beyond that, it's sort of hard to define "Linux" since you basically build a Linux system by picking bits and pieces you want and putting them together, and depending on what an individual Linux user wants, you can get pretty much any language involved. (As Paul said, Python and C++ play important roles)

link|flag
vote up 2 vote down

You're right MacOSX has Objective-C in the core.

Windows C++

Linux C

About the scripting languages, no, they pretty much high level.

link|flag
Windows in C: kernel, drivers, API. Only system applications and tools in C++, I guess. So it's more clear to say just C – abatishchev Feb 25 at 15:27
vote up 1 vote down

Windows: Mostly C and C++, some C#

link|flag
c#!!! NO WAY, REALLY??????! – Aaron Feb 24 at 3:02
.NET is shipped with Windows. A lot of .NET is in C#. – Jonathan Parker Feb 24 at 3:11
There's rumors that future versions (Windows 8 maybe) of windows will have some C++ code replaced with C#/.NET. – Jonathan Parker Feb 24 at 3:12
They've already managed a working OS (almost) completely in C#. It's called Singularity. research.microsoft.com/en-us/projects/… – Randolpho Feb 24 at 3:32
C/C++ is managed(.net version of) C/C++ – Sharique Feb 24 at 7:17
show 6 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.