labath added inline comments.

================
Comment at: source/Host/common/Host.cpp:1001
+    return {Stop, uint8_t(WSTOPSIG(wstatus))};
+  llvm_unreachable("Unknown wait status");
+}
----------------
krytarowski wrote:
> `WIFCONTINUED()`?
I'm deliberately ignoring that, as we don't have a use for it yet. On linux you 
have to pass the a special flag to waitpid to receive those notifications, and 
we don't do that. Does it work the same way on netbsd? If it possible to get 
those during normal interaction (without WCONTINUED), then I need to add it 
(and probably netbsd code needs to handle it), but otherwise I propose to skip 
it for the time being.


https://reviews.llvm.org/D33998



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

Reply via email to