[Lldb-commits] [lldb] r212884 - Fix lldb-gdbserver build

Todd Fiala tfiala at google.com
Sat Jul 12 15:19:35 PDT 2014


Huh, surprised that worked On Linux. Thanks!

On Saturday, July 12, 2014, Ed Maste <emaste at freebsd.org> wrote:

> Author: emaste
> Date: Sat Jul 12 16:46:39 2014
> New Revision: 212884
>
> URL: http://llvm.org/viewvc/llvm-project?rev=212884&view=rev
> Log:
> Fix lldb-gdbserver build
>
> s_listen_thread had the wrong type.
>
> Modified:
>     lldb/trunk/tools/lldb-gdbserver/lldb-gdbserver.cpp
>
> Modified: lldb/trunk/tools/lldb-gdbserver/lldb-gdbserver.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-gdbserver/lldb-gdbserver.cpp?rev=212884&r1=212883&r2=212884&view=diff
>
> ==============================================================================
> --- lldb/trunk/tools/lldb-gdbserver/lldb-gdbserver.cpp (original)
> +++ lldb/trunk/tools/lldb-gdbserver/lldb-gdbserver.cpp Sat Jul 12 16:46:39
> 2014
> @@ -53,7 +53,7 @@ using namespace lldb_private;
>
>  namespace
>  {
> -    static lldb::tid_t s_listen_thread = LLDB_INVALID_HOST_THREAD;
> +    static lldb::thread_t s_listen_thread = LLDB_INVALID_HOST_THREAD;
>      static std::unique_ptr<ConnectionFileDescriptor>
> s_listen_connection_up;
>      static std::string s_listen_url;
>  }
>
>
> _______________________________________________
> lldb-commits mailing list
> lldb-commits at cs.uiuc.edu <javascript:;>
> http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits
>


-- 
Todd Fiala | Software Engineer | tfiala at google.com | 650-943-3180
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20140712/adeb2a9e/attachment.html>


More information about the lldb-commits mailing list