[Lldb-commits] [PATCH] D50912: Don't cancel the current IOHandler when we push a handler for an utility function run.

Jim Ingham via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 21 15:22:15 PDT 2018


jingham added a comment.

m_last_natural_stop_id is the stop ID for the last time we stopped when the user was just running the process (run, continue, next, etc...)

m_last_user_expression_resume is the resume ID for the last user expression resume.

The stops and resumes always occur in pairs in lldb at present.  That won't be true when we get to no-stop debugging, but we'll have to adjust a bunch of things when we get to handling that...

Anyway, so if m_last_user_expression_resume >= m_last_natural_stop_id you are running some kind of expression.


https://reviews.llvm.org/D50912





More information about the lldb-commits mailing list