Skip Navigation
Jump
ttyrule
  • I thought you should use display server when you have dedicated GPU as the display server configures power save and power state while TTY doesn't, at least by default. For me nvidia-smi reports 100W in TTY and ~20W on X

    2
  • Jump
    Cosmic Rays?
  • Iirc the issue was that while(true) would be removed while it should be replaced with ret and this caused a bug where the binary would execute next function

    But I believe this way of cosmic ray detection would work

    volatile bool condition = true;
    while(condition) {
    }
    printf("Cosmic ray detected");
    
    1