You can certainly change it. But should you?

fl42v@lemmy.ml to Programmer Humor@programming.dev – 538 points –
62

You are viewing a single comment

const volatile is used a lot when doing HW programming. Const will prevent your code from editing it and volatile prevents the compiler from making assumptions. For example reading from a read only MMIO region. Hardware might change the value hence volatile but you can't because it's read only so marking it as const allows the compiler to catch it instead of allowing you to try and fail.

I will not tell my kids regular scary stories. I will tell them about embedded systems

When you program embedded you'll also dereference NULL pointers at some point.

::: spoiler More... Some platforms can have something interesting at memory address 0x0 (it's often NULL in C). :::

In amd64/x86 kernel space you can dereference null as well. My hobby kernel keeps critical kernel structures there XD.

I was thinking about telling them how in embedded systems it's a good practice to allocate the memory by hand, having in mind the backlog, but yours will come first