unbuffered means nothing is sent until is is simultaneously received, so there is no limbo or race or uncertainty. one sender "wins" the select and the others remain blocked waiting.
On Wed, Jul 10, 2019 at 6:24 AM Dan Eloff <dan.el...@gmail.com> wrote: > Maybe I'm wrong here in my understanding of unbuffered channels, but I > don't think so: > > Matt says earlier: "Only a buffered channel can "hold" anything. If the > channel is unbuffered, then you are guaranteed that another goroutine has > at least received the item you sent when the send statement returns." > > I think at least in the simple case of `channel <- fd` this cannot be > true, since that operation can only fail by panicking, and I beleive it > will only panic if the channel is nil or closed. Now if you used a > non-blocking send with a select, that would be a different story. > > So if you send over that channel it blocks > the receiver wakes and runs the select > but sees both channels ready > picks the timeout channel at random > > Now one of two things must happen, either the sender blocks forever > because nobody read the sent value, or the value gets lost to space and > both receiver and sender continue on their merry ways. > > Am I wrong? > > -Dan > > -- > 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. > To view this discussion on the web visit > https://groups.google.com/d/msgid/golang-nuts/CADz32d%3DOm96%2B7iZet%3DDL0AaNxYVYWO6Q%3DOgvzoYiWKdZpSipHg%40mail.gmail.com > <https://groups.google.com/d/msgid/golang-nuts/CADz32d%3DOm96%2B7iZet%3DDL0AaNxYVYWO6Q%3DOgvzoYiWKdZpSipHg%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- *Michael T. jonesmichael.jo...@gmail.com <michael.jo...@gmail.com>* -- 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. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/CALoEmQzqDs9XnDm-WHuUw7pr7j%2BB%3Df8PsozhoKsgXDQ7o%3DwjuA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.