
1 Mar
2011
1 Mar
'11
9:24 p.m.
--- El mar 1-mar-11, Oliver Kowalke <oliver.kowalke@gmx.de> escribió:
to which version you are referring to? the current implementation has asym_fiber.cpp and sym_fiber.cpp.
Oliver
0.9.1 (latest on vault) boost/context/ actually has asym_fiber.hpp/fiber.hpp/sym_fiber.hpp also, both asym_fiber and sym_fiber have allocations; asym_fiber.hpp:51 return detail::asym_fiber_base::ptr( do_return ? new detail::asym_fiber_object< void(*)() >( fn, stacksize, detail::asym_fiber_base::do_return) : new detail::asym_fiber_object< void(*)() >( fn, stacksize, detail::asym_fiber_base::do_not_return) ); sym_fiber.hpp:51 return detail::sym_fiber_base::ptr( new detail::sym_fiber_object< void(*)() >( fn, stacksize) );