Why is C as programming language still so prominent when it comes to OS programming? Shouldn't C++ have replaced it a long time ago as its successor?
|
closed as not constructive by Daniel Fischer, Will♦ May 3 at 13:46
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
The primary reason that Linux isn't written in C++ is of course that Linus Torvalds hates it. There are also technical reasons why C might be preferred over C++ for things like kernels.
Here are some non-reasons:
Here are some reasons that a kernel in C++ might be a good idea:
|
|||||||||||||
|
|
Linus Torvalds hates it. He didn't implement GIT using C++ too, and here's his reason (for GIT implementation): http://thread.gmane.org/gmane.comp.version-control.git/57643/focus=57918 |
|||||||||||||
|
|
C was designed from the beginning to be a "sweet spot" between a "high level" language and assembly language. That makes it ideal for use in any real time application, such as an operating system. |
|||||||
|
|
You can utilise as much of the power of C++ as you wish. But no more than that. And with the arrival of C++11, the language approaches the expressiveness of python (!) See the end of this article for more observations about C++11. EXCEPTIONSThe best way to handle errors is with exceptions. If you do nothing else in the kernel w.r.t. exceptions just do this in a C++ kernel:
Then begin to test and trust exceptions and stack unwinding in the kernel to Do What You Expect. C++ can cleanup C code and make it type safe. Macros are type agnostic. Functions are type safe. And indempotent. Take this example from http://www.ibm.com/developerworks/linux/library/l-gcc-hacks/index.html or http://tinyurl.com/5g28qz
This can be replaced by a Linux Kernel approved template
I say "Linux Kernel approved" because kernel designers using C++ would restrict templates to a specific set of tried and true and perhaps most importantly simple templates. And notably, #define constants can be replaced with type-safe and auto-initialising types, such as
ABSTRACTIONIn C++ a data abstraction can be as simple as and have the same overhead as a C struct, with the benefits of constructor and destructor, resource allocation via construction, guaranteed initialisation, controlled instantiation, controlled copying and assignment, serialisation and streaming, and memory management. ENCAPSULATIONA C struct is a class in C++. Add some methods to the C++ struct and you've got an ADT. Hide essential characteristics and operations in the C++ struct and you've got an ADT with encapsulation. Whereas C exposes the entire struct to the public, C++ enforces strict encapsulation protocols such as public, protected and private. POLYMORPHISMPolymorphism is often implemented obscurely in C using a highly structured set of pointers to functions. The overhead of C++ polymorphics in the single inheritance case is the same. But the clarity of coding polymorphism in C++ leaves C parsecs behind. Keep It Simple, Use Single Inheritance Only and Polymorphism works fine. GENERICSContainers - write a Linux Kernel Template Library but eschew STL STL is out. The Linux Kernel Template Library is in. Write streamlined tried and true containers just for the kernel. The containers in Linux such as Linux::{map,string,vector} satisfy most of the requirements of the kernel data model. GENERICS Smart pointers in a Linux Kernel Template Library Write some smarty pants pointer wrappers in C++ and you've eliminated 80% of the headaches of using C pointers in the kernel. Unlike STL, the Linux Kernel Template Library supports containers of pointers. Safely. MEMORYYou want to use malloc? Be my guest. You want your class to use its own memory mgmt scheme? Possible in C, easy in C++ by overloading new. THE CODEI presume that there are C coding standards for the kernel. This would definitely apply to coding standards for C++ as well.
THE PROOF IS IN THE PUDDINGA simple (?) exercise would be to compile the kernel using g++, without making any C++ adaptations to the code base. Then test it. Run it. Distribute it. Abuse it. Does it fly? If so, then try some of the steps above and see if the same holds. C++11 Learn more: C++11 succint pythonesque example |
|||||
|
|
The Fiasco micro kernel is implemented in C++. |
|||
|
|
|
@Richard Wolf - mostly agree. I think the runtime-support issues is the primary obstacle, however. I have tried to implement a on-the-metal kernel in C++, so I can tell you from experience that having to write your own librt isn't much fun (i.e., think the 'new' keyword), and programming C++ while trying to avoid stepping in one of those runtime-supported features takes a lot of power out of it as well. Portability wasn't really a big concern - the GCC compiler is pretty portable and as of 3.4 or so actually generates pretty good code. I can also tell you from experience that it is doable, it's just that you have hurdles to overcome that aren't present in C. I would also add this: C++ compilers mangle symbols, which can be a bitch in linker scripts and other supporting infrastructure. |
||||
|
|
|
Here I got one more link that I am pasting here: http://www.kernel.org/pub/linux/docs/lkml/ Why don't we rewrite the Linux kernel in C++?
|
|||||||
|
|
See this kerneltrap thread for actual discussion on C++ in the kernel. |
|||||||||||
|
|
I think encapsulation and polymorphism, is a very big strength, if c++ does not cut for kernel development , why does not the mighty Linus Trovalds create the feature of classes in C. Structures are very good, but classes has its properties and functionality embedded. It would be great if the computer components where interfaced by classes, instead of structures that are statically typed and having namespace conflicts. Its not just the type variables that are not allowed in a program there are many words that can not be used in a program because of being operating system global variables. |
|||
|
|
Aside from Linus' personal antipathy there are a couple of good reasons why you don't see a lot of other OS's written in it.
|
|||||||||||||||||
|
STL is a bloated mess, imho. But the source code and design are available. With that, one can write a few standard Linux Kernel template classes (vector, dict, string) that would go a long way to avoiding reinventing wheels. MACROs can often be done away with by writing inline functions and tempalte functions. Note that the code bloat often referred to is because of templates. They need to be reigned in and controlled in an environment like an OS kernel.
Definitely. Compare code that returns error codes to code that uses exceptions for error processing handling. The latter is far easier to read and maintain.
Rather, I would say grab the code for std::string and create linux::kernel::string that is streamlined and just one thing (handle strings) well, without error or unnecessary overhead. std::string is built on a base string class that handles Unicode and w_chars in addition to bytes. Overkill. I reiterate and say that a judicious set of templates and use of inline functions could greatly improve th kernel, add important compile-time checking, all without any overhead over using C. With the added benefit of improved code comprehension. Yes, yes, there is a LOT of badly written C++ out there, but the same can be said of any computer language. Good C++, rare as it is, is a thing of beauty and runs like a hot damn :) |
|||
|
|
|
If you perform benchmarks of the two languages, C is generally much faster (because it doesn't have to deal with the overhead of objects). And it's much better suited to certain low-level programming than C++ is. |
|||||||||||||||||||
|
