How can i stop(interrupt) a fiber using c++ boost?
for example
fiber.stop()
How can i execute fiber join(time) using c+ boost(the default api dont accept a maximun time for waiting) ? for example:
fiber.join(1000);
it is possible to suspend a fiber , serialize it on disk , then reload it in the system?