llvm-project/lldb/source
Jim Ingham 57190baa6c Don't call SBDebugger::SetInternalVariable in the sigwinch_handler, since that takes locks and potentially does allocations.
Just call SBDebugger::SetTerminalWidth on the driver's SBDebugger, which does the same job, but no locks.
Also add the value checking to SetTerminalWidth you get with SetInternalVariable(..., "term-width", ...).

rdar://problem/11310563

llvm-svn: 155665
2012-04-26 21:39:32 +00:00
..
API Added the ability to specify the symbol file for a module when adding it to a target. 2012-04-23 20:23:39 +00:00
Breakpoint <rdar://problem/11282938> 2012-04-23 22:00:21 +00:00
Commands Fix the docs for "breakpoint command add" to specify the arguments passed into the python function. 2012-04-25 01:05:21 +00:00
Core Don't call SBDebugger::SetInternalVariable in the sigwinch_handler, since that takes locks and potentially does allocations. 2012-04-26 21:39:32 +00:00
Expression Made the IR interpreter move all floats, not just "wide" 2012-04-26 20:51:20 +00:00
Host Bump to lldb-144. 2012-04-25 01:44:49 +00:00
Interpreter Patch from Viktor Kutuzov: changes the method declarations to const for the Args::GetCommandString and Agrs::GetQuotedCommandString methods. It allows using of these methods within the other const methods. 2012-04-25 22:30:32 +00:00
Plugins Patch from Filipe Cabecinhas. 2012-04-26 17:33:20 +00:00
Symbol Save more memory by not parsing the symbol table for stand alone DWARF files. We currently have SymbolFile plug-ins which all get the chance to say what they can parse in a symbol file. Prior to this fix we would ask the SymbolFileDWARF plug-in what abilities it had, and it would answer with "everything", and then we would check the SymbolFileSymtab plug-in what abilities it had, in case it had more abilities. The checking that SymbolFileSymtab does is a bit expensive as it pulls in the entire symbol table just to see if it can offer a few scraps of debug information. This causes all stand along DWARF files to pull in their symbol tables even though those symbols will never be used. This fix will check all SymbolFile plug-ins for their abilities and if any plug-in responds with "everything", then we stop the search. 2012-04-26 16:53:42 +00:00
Target Change Target::ReadMemoryFromFileCache to not read from the file 2012-04-25 00:06:56 +00:00
Utility Removed redundant isxdigit checks and added the ability to GetHexU8() so it can extract an 8 bit hex value if one is available. It will set EOF if "set_eof_on_fail" is true or if out of data. This allows a string decoder to grab a string without losing the last part of the packet with a packet like "414243,abc" (it can extract "ABC" and leave the file position set to the comma). 2012-04-07 00:42:53 +00:00
Makefile Patch from Jean-Daniel Dupas: 2010-07-12 23:14:00 +00:00
lldb-log.cpp Patch from Filipe Cabecinhas. 2012-04-26 17:07:53 +00:00
lldb.cpp Patch from Viktor Kutuzov <vkutuzov@accesssoftek.com>: 2012-04-14 00:54:42 +00:00