On Fri, Feb 2, 2018 at 6:07 AM, rmfr <remus.clearwa...@gmail.com> wrote: > > Does go programmers should handle syscall.EINTR all by themselves after > go1.9 when writing disk files? > > I just noticed this commit > https://github.com/golang/go/commit/c05b06a12d005f50e4776095a60d6bd9c2c91fac#diff-b7452e0f27c15f140b5e86f88e2d43deL192 > > If the answer is 'yes', I wonder why deleted this loop-write-if-eintr logic? > Does it not bring unnecessary inconvenience to the go programmer?
Go programmers should never see syscall.EINTR when calling function/methods in the os and net packages. If they do, something has gone wrong. The main protection against EINTR is that Go installs its signal handlers with SA_RESTART set. If you do get an EINTR return, by all means report a bug. Ian -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.