this post was submitted on 18 Aug 2023
90 points (97.9% liked)

Linux

47572 readers
731 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Will there be performance and security improvements?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 31 points 1 year ago (1 children)

Performance? Not really no. I believe C is slightly faster with Rust and C++ competing for second place. The benefit is safer code as Rust is built with performance and safety in mind. It highlights what potential errors can be found where making human error way less common. Instead of potential null errors types are wrapped in an option enumerator which ensures you know there can be a lack of a value. Expections are also enumerators done similarly with a result object so you know which functions may fail. Instead of using memory and potentially forgetting to free it we have the ownership system.

[–] [email protected] 8 points 1 year ago (3 children)

How is C faster than C++? Unless you use virtual functions, it's as performant as C. And you definitely wouldn't use virtual functions in a kernel.

[–] [email protected] 25 points 1 year ago* (last edited 10 months ago)

[This comment has been deleted by an automated system]

[–] [email protected] 23 points 1 year ago (2 children)

C++ is only as fast as C if you use only the parts of C++ that are identical to C. In other words, C is faster than C++

[–] [email protected] 11 points 1 year ago (2 children)

You can use compile time polymorphism in C++ without any runtime performance cost.

[–] [email protected] 0 points 1 year ago

Compile time has got to be part of the convo esp when it comes to the kernel. The Linux kernel is one of the few bits where end-users are actively encouraged to compile from source. It is a feature!

Adding C++ compilitis is pain for what gain, from a kernel pov.

I am not a big fan of c++ overall however that is because other languages have emerged that are sweeter than C that gate some of the people issues with C++.

Anyone who has ever had a thing that was like a thing but not exactly the thing, in C, knows C ain’t great at that.

[–] [email protected] -5 points 1 year ago (2 children)
[–] [email protected] 8 points 1 year ago

The description says:

In this video, we'll do a deep dive on what C++ Polymorphism is, what "virtual" does under the hood, and ultimately why it is SUCH a performance hit compared to languages like C and Rust.

This is not about compile-time polymorphism.

[–] [email protected] -1 points 1 year ago

Here is an alternative Piped link(s): https://piped.video/watch?v=aq365yzrTVE

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I'm open-source, check me out at GitHub.

[–] [email protected] 2 points 1 year ago

Since C++ has Turing complete compiling, I guess technically it can go infinite compilation time