MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / ProducerBase

Method ProducerBase

concurrentqueue.h:1722–1731  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1720 struct ProducerBase : public details::ConcurrentQueueProducerTypelessBase
1721 {
1722 ProducerBase(ConcurrentQueue* parent_, bool isExplicit_) :
1723 tailIndex(0),
1724 headIndex(0),
1725 dequeueOptimisticCount(0),
1726 dequeueOvercommit(0),
1727 tailBlock(nullptr),
1728 isExplicit(isExplicit_),
1729 parent(parent_)
1730 {
1731 }
1732
1733 virtual ~ProducerBase() { }
1734

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected