forked from OSchip/llvm-project
Don't enable thread safe logging as it currently deadlocks logging.
llvm-svn: 126260
This commit is contained in:
parent
2329c542e9
commit
1971900fdc
|
@ -629,7 +629,7 @@ def lldbLoggings():
|
||||||
else:
|
else:
|
||||||
lldb_log_option = "event process expr state api"
|
lldb_log_option = "event process expr state api"
|
||||||
ci.HandleCommand(
|
ci.HandleCommand(
|
||||||
"log enable -t -T -n -f " + os.environ["LLDB_LOG"] + " lldb " + lldb_log_option,
|
"log enable -T -n -f " + os.environ["LLDB_LOG"] + " lldb " + lldb_log_option,
|
||||||
res)
|
res)
|
||||||
if not res.Succeeded():
|
if not res.Succeeded():
|
||||||
raise Exception('log enable failed (check LLDB_LOG env variable.')
|
raise Exception('log enable failed (check LLDB_LOG env variable.')
|
||||||
|
@ -641,7 +641,7 @@ def lldbLoggings():
|
||||||
else:
|
else:
|
||||||
gdb_remote_log_option = "packets process"
|
gdb_remote_log_option = "packets process"
|
||||||
ci.HandleCommand(
|
ci.HandleCommand(
|
||||||
"log enable -t -T -n -f " + os.environ["GDB_REMOTE_LOG"] + " process.gdb-remote "
|
"log enable -T -n -f " + os.environ["GDB_REMOTE_LOG"] + " process.gdb-remote "
|
||||||
+ gdb_remote_log_option,
|
+ gdb_remote_log_option,
|
||||||
res)
|
res)
|
||||||
if not res.Succeeded():
|
if not res.Succeeded():
|
||||||
|
|
Loading…
Reference in New Issue