You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The guile process currently reads from /dev/zero indefinitely, causing it to use too much cpu.
I don't know how else to keep the process alive, but this is not ideal.
Reading from an empty named pipe causes guile to not listen on the socket until something is written to the pipe, after which it exits on EOF.
Reading from /dev/null causes guile to exit immediately.
The text was updated successfully, but these errors were encountered:
The guile process currently reads from
/dev/zero
indefinitely, causing it to use too much cpu.I don't know how else to keep the process alive, but this is not ideal.
Reading from an empty named pipe causes guile to not listen on the socket until something is written to the pipe, after which it exits on EOF.
Reading from
/dev/null
causes guile to exit immediately.The text was updated successfully, but these errors were encountered: