On Mon, Jan 26, 2026 at 12:18:20AM -0800, doubled lin wrote: > Failed to setns: invalid argument > > what's wrong with me?
With you? Nothing. Go spawns additional threads in the runtime however. The syscall you try to execute only works if a process didn't fork(2) et al as specified in the syscall docs, which leads to the failure return. https://github.com/golang/go/issues/10051 -- 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 [email protected]. To view this discussion visit https://groups.google.com/d/msgid/golang-nuts/aXfMTw0c-4bWmt4f%40carbon.
