/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.lukas-barth.net
| | manybutfinite.com
3.5 parsecs away

Travel
| | After examining the virtual address layout of a process, we turn to the kernel and its mechanisms for managing user memory. Here is gonzo again: Linux processes are implemented in the kernel as insta
| | rigtorp.se
1.1 parsecs away

Travel
| | In this article I will explain when and how to use huge pages.
| | disconnect3d.pl
3.9 parsecs away

Travel
| | When we think of a null pointer, NULL in C or nullptr in C++, we typically assume it is "invalid" or "not pointing to a valid memory location". But what if I tell you that a null pointer can actual...
| | andreabergia.com
27.3 parsecs away

Travel
| Error handling is a fundamental aspect of programming. Unless you are writing hello world, you will need to handle errors in your code. In this post, I will discuss a bit the most common approaches used by various programming languages. Return error codes This is one of the most ancient strategies - if a function can fail, it can simply return an error code - often a negative number, or null.