chenBright commented on issue #2983:
URL: https://github.com/apache/brpc/issues/2983#issuecomment-3385748439

   Under the protection of version_lock, there should be only one waiter.
   
   Jumping precedes tracing,
   From the bthread's perspective: traced = false;
   From the tracer's perspective: status = TASK_STATUS_JUMPING;
   Only the tracer is waiting.
   
   Tracing precedes jumping,
   From the bthread's perspective: traced = true;
   From the tracer's perspective: status != TASK_STATUS_JUMPING;
   Only the bthread is waiting.
   
   Perhaps the traced or status values ​​are incorrect?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to