An important feature of channels is the active slot. The active slot keeps track of
the currently active transaction, allowing transactors to fill a channel without
retaining references to each transaction. The functions activate(), start(),
complete(), and remove() modify the active slot status so a consumer can
update the transaction status as it is processed. Typically, a channel consumer
should use the active slot and a producer should use put() followed by a
wait_for(ENDED) indication.
看看golden reference中和vmm_channel有关的内容就清楚了。 |