ASDenysPetrov added a comment.

@NoQ

> That's completely different checker logic.

I think, I got the message. The real recursive logic can be caught here:

  std::recursive_mutex rm;
  void recur1() {
    recur2();
  }
  void recur2() {
    rm.lock();
    recur1(); // here we can ignore the meet of twice lock, can't we? 
  }


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D85984/new/

https://reviews.llvm.org/D85984

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to