Linus Torvalds Speaks on the the divide between Rust and C Linux developers an the future Linux. Will things like fragmentation among the open source community hurt the Linux Kernel? We’ll listen to the Creator of Linux.

For the full key note, checkout: Keynote: Linus Torvalds in Conversation with Dirk Hohndel

  • @atzanteol
    link
    English
    1318 hours ago

    It forces you to be careful in the way it wants you to be careful. Which is fine, but it makes it a strange beastie for anyone not used to it.

      • @atzanteol
        link
        English
        314 hours ago

        It can be, sure. I prefer garbage collectors but I’m not doing systems programming.

        • Kairos
          link
          fedilink
          7
          edit-2
          14 hours ago

          I feel like a garbage collector would be too much a performance hit for kernel stuff.

          • @[email protected]
            link
            fedilink
            English
            28 hours ago

            2 things:

            1. It’s more the determinacy, a GC randomly fires up and your systems stops for some long amount of time. There are pauseless GCs but that’s a different nightmare.

            2. The kernel has things similar to GCs. They’re used for more specialized tasks, and some (like rcu) are absolute nightmares that have take decades to get working.