Channel (programming): Difference between revisions

Content deleted Content added
m libthread channels: proper name tag
Liflon (talk | contribs)
m Remove extra line break
Line 2:
 
In computing, a '''channel''' is a model for [[interprocess communication]] and [[synchronization]] via [[message passing]]. A message may be sent over a channel, and another process or thread is able to receive messages sent over a channel it has a [[reference (computer science)|reference]] to, as a [[stream (computing)|stream]]. Different implementations of channels may be buffered or not, and either synchronous or asynchronous.
 
 
== {{Proper name|libthread}} channels ==