If the reason is to avoid those race conditions, perhaps the default value should be threadsafe, and the option should disable thread safety.<br><div class="gmail_quote">On Mon, May 11, 2015 at 8:40 AM Pavel Labath <<a href="mailto:labath@google.com">labath@google.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I think the reason is that when you are debugging a race condition,<br>
the added synchronization resulting from logging can make the problem<br>
go away as soon as you start investigating it, which can be quite<br>
annoying.<br>
<br>
BTW, there is a way to do atomic writes (at least on posix systems, I<br>
don't know if there is a windows equivalent) without locking: write<br>
the string to a temporary buffer in memory (as you do now), and then<br>
write it to a file which was opened with O_APPEND with a single system<br>
call. Your implementation probably already does this, so all you need<br>
to do is make sure O_APPEND is set.<br>
<br>
cheers,<br>
pl<br>
<br>
<br>
<br>
On 11 May 2015 at 16:23, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
> +greg. I'm not sure either tbh, if there's no contention the cost of<br>
> acquiring the mutex should be free, and if there is contention then the lock<br>
> is required.<br>
><br>
> On Mon, May 11, 2015 at 7:29 AM Ed Maste <<a href="mailto:emaste@freebsd.org" target="_blank">emaste@freebsd.org</a>> wrote:<br>
>><br>
>> On 8 May 2015 at 14:50, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
>> > Author: zturner<br>
>> > Date: Fri May  8 13:50:54 2015<br>
>> > New Revision: 236892<br>
>> ><br>
>> > URL: <a href="http://llvm.org/viewvc/llvm-project?rev=236892&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=236892&view=rev</a><br>
>> > Log:<br>
>> > Enable thread-safe logging.<br>
>><br>
>> Thanks for fixing this up Zach.<br>
>><br>
>> This raises a question though, going back to the original introduction<br>
>> of logging support -- why is this an option at all, never mind a user<br>
>> facing option? It's particularly odd that we default to thread-safe,<br>
>> unless any other options are specified. It seems to me we should just<br>
>> remove the thread-unsafe path.<br>
><br>
><br>
> _______________________________________________<br>
> lldb-commits mailing list<br>
> <a href="mailto:lldb-commits@cs.uiuc.edu" target="_blank">lldb-commits@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits</a><br>
><br>
</blockquote></div>