From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <3EC96592.50404@ameritech.net> From: northern snowfall User-Agent: Mozilla/5.0 (X11; U; SunOS sun4u; en-US; rv:0.9.4.1) Gecko/20020518 Netscape6/6.2.3 MIME-Version: 1.0 To: 9fans@cse.psu.edu Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [9fans] Channel casting Date: Mon, 19 May 2003 18:15:30 -0500 Topicbox-Message-UUID: b3c7accc-eacb-11e9-9e20-41e7f4b1d025 Afternoon, all; Regarding channels in threads and procs, is a given channel multicast or unicast? By that, I mean, say I have multiple threads in a blocking recv() from a Channel. The service thread reads a request off the Channel, then, wants to send an appropriate response to the sender. If the server thread then send()s on the Channel while the multiple client threads are recv()ing, will the correct client thread receive the reply? Will they all receive the reply? What is the strategy for this issue. Don