Re: [Lldb-commits] [lldb] r300610 - Fix Windows bot failure

2017-04-18 Thread Chris Bieneman via lldb-commits
Ah! Missing include then. I'll fix it correctly. -Chris > On Apr 18, 2017, at 3:18 PM, Adrian McCarthy wrote: > > Actually, Windows does have `struct timespec`. It's defined in `` > and ``. > > https://msdn.microsoft.com/en-us/library/mt633792.aspx >

Re: [Lldb-commits] [lldb] r300610 - Fix Windows bot failure

2017-04-18 Thread Adrian McCarthy via lldb-commits
Actually, Windows does have `struct timespec`. It's defined in `` and ``. https://msdn.microsoft.com/en-us/library/mt633792.aspx I suspect somebody had suppressed it for some reason. On Tue, Apr 18, 2017 at 2:47 PM, Chris Bieneman via lldb-commits < lldb-commits@lists.llvm.org> wrote: > Author

[Lldb-commits] [lldb] r300610 - Fix Windows bot failure

2017-04-18 Thread Chris Bieneman via lldb-commits
Author: cbieneman Date: Tue Apr 18 16:47:50 2017 New Revision: 300610 URL: http://llvm.org/viewvc/llvm-project?rev=300610&view=rev Log: Fix Windows bot failure timespec is not available on Windows, and we should use size_t instead of nfds_t. Modified: lldb/trunk/source/Host/common/MainLoop.