fiber icon indicating copy to clipboard operation
fiber copied to clipboard

fiber::sleepfor stop updating when system clock moves backwards

Open arc130 opened this issue 1 year ago • 0 comments

I'm using fiber with shared_work algo on boost 1.78 aarch64. a simple code is

while (true){
  this_fiber::sleep_for(100ms);

}

when system clock moves backwards, this fiber would never resumed.

arc130 avatar Sep 26 '23 15:09 arc130