Keynote | Rust in the Linux kernel - Alice Ryhl

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 พ.ย. 2024

ความคิดเห็น • 11

  • @ragectl
    @ragectl 8 หลายเดือนก่อน +5

    Excellent talk

  • @jmarcelomb
    @jmarcelomb 8 หลายเดือนก่อน

    Loved the talk! Thank you so much!!

  • @gzoechi
    @gzoechi 8 หลายเดือนก่อน +1

    Great insight

  • @pyyrr
    @pyyrr 7 หลายเดือนก่อน +1

    oh no. i think its better off if everyone just sticks to c personally

  • @vcool
    @vcool 8 หลายเดือนก่อน +5

    It is dangerous to keep using C. Its use has to be replaced. On that note, even unsafe Rust is dangerous.

    • @gtdcoder
      @gtdcoder หลายเดือนก่อน

      C is obsolete and does need to be replaced, but by C++, not by Rust.

  • @scosminv
    @scosminv 6 หลายเดือนก่อน +3

    I'd rather have zig as a better C instead of Rust... C ABI Interop would be a breeze.

    • @NicolaiSyvertsen
      @NicolaiSyvertsen 6 หลายเดือนก่อน +2

      Rust is more mature, and interop with C can be improved. Lets at least get one non-C language that has reached 1.0 into the kernel before we think about adding more.

    • @scosminv
      @scosminv 5 หลายเดือนก่อน

      @@NicolaiSyvertsen the point was not adding rust in the first place. That ship has sailed :).

    • @----__---
      @----__--- 2 หลายเดือนก่อน +2

      C interop would be easy because zig is at least unsafe as c and its interoperability is no different than using rust bindgen (calling clang under the hood is no magic you know).
      The point is to have safe abstractions over the unsafe C code, not adding another unsafe language beside C.