Channel (programming): Difference between revisions

Content deleted Content added
Snotbot (talk | contribs)
m Fixing section headings (task 5)
Line 8:
* Channel creation of fixed or variable size, returning a [[reference]] or [[handle]] <source lang="c">Channel* chancreate(int elemsize, int bufsize)</source>
* sending to a channel <source lang="c">int chansend(Channel *c, void *v)</source>
* sendingreceiving tofrom a channel <source lang="c">int chanrecv(Channel *c, void *v)</source>
 
===libthread channels===