boostorg / fiber

userland threads
464 stars 108 forks source link

BOOST_FIBERS_NO_ATOMICS compile error #285

Open karopawil opened 3 years ago

karopawil commented 3 years ago

Hi,

I am trying to compile with BOOST_FIBERS_NO_ATOMICS flag and getting compile errors like:

/home/precitec/boost-build/boost_1_72_0/boost/fiber/context.hpp:395:25: error: request for member ‘fetch_add’ in ‘ctx->boost::fibers::context::usecount’, which is of non-class type ‘std::size_t’ {aka ‘long unsigned int’} 395 | ctx->usecount.fetch_add( 1, std::memory_order_relaxed);

Is this flag currently supported?

Regards, Naveen

olk commented 3 years ago

seams to be a bug

karopawil commented 3 years ago

Thanks for the quick answer. Any plans to fix it?

karopawil commented 3 years ago

Or I could give it a shot if you gave me some hints.