Re: [go-nuts] unix.Select with fd gotten from named pipe on macos behaves differently compared to linux

2023-12-21 Thread Steven Hartland
poll and select for this behavior was broken in FreeBSD up until 195423 was committed as detailed by this bug report . Given the MacOS and FreeBSD have related history I wouldn't be surprised

Re: [go-nuts] unix.Select with fd gotten from named pipe on macos behaves differently compared to linux

2023-12-21 Thread 'TheDiveO' via golang-nuts
The issue is also reproducible using Python3 on macOS, whereas it works as expected once again on Linux; just for reference here's the corresponding SO question . To a

[go-nuts] Re: Invitation to join Golang Struct Community

2023-12-21 Thread Manish Rai Jain
Hi Gophers, Manish here again! Just wanted to share a quick update on what’s been happening in our Gopher Struct community. We’ve had an amazing start with around 200 Gophers joining us already. It’s been exciting to see the community grow and conversations flourish. If you haven’t had a

Re: [go-nuts] Re: Why there is no net.ListenContext?

2023-12-21 Thread Michał Matczuk
Hey. net.ListenConfig does not document the context usage. The docs just point to Listen. I'd expect that cancelling the context would stop the listener but it's not the case. The questions are: * Should Listener created with net.ListenConfig.Listen be closed - is that a bug, if not why? *