Similarly to ports, a channel can be passed in a message to another process. The process that posts this operation, however, will loose its access to that channel (channel can link only two threads). |
There are only three basic calls which operate on a channel:
|
tce_chn_snd -- sends a message,
|
... |
blen = tce_chn_snd(Channels[0],buffer,len,FMT_Int); |
... |