[Lldb-commits] [PATCH] fix lldb-mi hang on OSX

Abid, Hafiz Hafiz_Abid at mentor.com
Tue Dec 2 09:45:21 PST 2014


I see only one fileno call inside lldb-mi and that is specific to Windows code. Probably some fileno call inside lldb proper is causing this issue. In which case, there is nothing much lldb-mi can do but to try to avoid this scenario. As I told earlier, ‘select’ based solution increases time to run test many times. So that does not seem reasonable. I am OK with ioctl based solution and will commit it later if there are no more comments/suggestion.

>Side comment, But regarding conditionally compiling the file, i prefer doing that at the CMake level (only include it in the set of inputs if the platform is correct) instead of wrapping the whole file in ifdefs.
Agree. But if problem is handled at the build level then autoconf based system should be updated too. Anyway, this issue can be dealt separately.

Thanks,
Abid

From: lldb-commits-bounces at cs.uiuc.edu [mailto:lldb-commits-bounces at cs.uiuc.edu] On Behalf Of Zachary Turner
Sent: 02 December 2014 16:34
To: Илья К; lldb-commits at cs.uiuc.edu
Subject: Re: [Lldb-commits] [PATCH] fix lldb-mi hang on OSX

I kind of feel like calling fgets from one thread and fileno from another thread indicates a design flaw. Is there any way to fix the design problem instead of this particular bug?
On Tue, Dec 2, 2014 at 1:24 AM Илья К <ki.stfu at gmail.com<mailto:ki.stfu at gmail.com>> wrote:
Hello Abid,

>RE: But I am still wondering why you need extra "return" in case of -exec-run. It seems to work ok on Linux. Where is it blocking in OSX?
I had the same bug on OSX but "select" patch helped me (btw, thank Dawn for that).
As I understood the problem occurs when trying to get filno(stdin), when another thread sleeping in fgets(stdin). The filno() starts sleeping too because stdin's mutex already locked by fgets(). Perhaps it related to OSX's libc implementation and therefore it don't reproduced on Linux.

I wrote test, which doesn't works properly without WITH_SELECT_FIX:
<code>
#include <cstdio>
#include <thread>
#include <unistd.h>
#include <sys/select.h>

//#define WITH_SELECT_FIX

void first_func()
{
    char buf[1024];
#ifdef WITH_SELECT_FIX
    fd_set inset;
    FD_ZERO(&inset);
    FD_SET(0, &inset);
    select(1, &inset, NULL, NULL, NULL);
#endif
    char *line = fgets(buf, sizeof buf, stdin);
    printf("you entered: %s\n", buf);
}

void second_func()
{
    usleep(100);
    printf("fileno: ");
    printf("%d\n", fileno(stdin));
}

int main()
{
    std::thread first(first_func);
    std::thread second(second_func);
    printf("start test\n");
    first.join();
    second.join();
    printf("exiting\n");
    return 0;
}
</code>

>RE: Btw, if the problem is only with gdb-exit then an extra check for it where we check for "quit" will work too.
As I said above, it doesn't solve a problem, it only fixes a certain case.

So I think you should accept the Dawn's "select" patch.

Thanks,
Ilia
_______________________________________________
lldb-commits mailing list
lldb-commits at cs.uiuc.edu<mailto:lldb-commits at cs.uiuc.edu>
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20141202/111d04a0/attachment.html>


More information about the lldb-commits mailing list