windows - Is it possible to set breakpoint condition as "break when called by another thread"? -
i'm investigating issue might caused multithread. data being read thread, i'd see if being read thread.
i can set breakpoint , keep pressing f5 , check if breaking in other thread, it's little annoying. possible set breakpoint condition "break when called thread"?
you can set filter (see using breakpoints). filter can set on threadid, example. set filter, right-click breakpoint, select conditions..., , enter
threadid!=<thread id aren't interested in> as filter expression. make sure there aren't whitespace characters in expression. otherwise greeted not-so-helpful error message.
Comments
Post a Comment