[Lldb-commits] [PATCH] D33831: Add temp_failure_retry helper function

Kamil Rytarowski via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Jun 2 07:55:08 PDT 2017


krytarowski added inline comments.


================
Comment at: include/lldb/Host/Host.h:252
+    result = f(args...);
+  while (result == fail_value && errno == EINTR);
+  return result;
----------------
Will this build on Windows for their native API? If so, will it be useful there?


https://reviews.llvm.org/D33831





More information about the lldb-commits mailing list