ChannelElementBase::ChannelElementBase()
    : input(0)
{
  ORO_ATOMIC_SETUP(&refcount,0);
}
Example #2
0
		AtomicInt(const AtomicInt& orig)
		{
			ORO_ATOMIC_SETUP( &_val, oro_atomic_read( &(orig._val) ) );
		}