Skip to content
  1. Jan 23, 2011
    • Greg Clayton's avatar
      Deprecated old forms of SBTarget::Launch. There is not just one and no · 6f907e69
      Greg Clayton authored
      SWIG renaming done to work around deprecated APIs.
      
      llvm-svn: 124075
      6f907e69
    • Johnny Chen's avatar
      Let's teach SWIG to rename the overloaded SBTarget::Launch() function which has · c5826824
      Johnny Chen authored
      provision for specifying a working directory with the name LaunchWithCWD in our
      target language (Python) for now.  This fixes the test suite failures due to the
      overloading.
      
      llvm-svn: 124069
      c5826824
    • Greg Clayton's avatar
      Restored some missing APIs for the test suite. Now testsuite still has some failures · 03813a4e
      Greg Clayton authored
      due to overloaded SBTarget::Launch() calls. 
      
      Bumping Xcode project versions: lldb-42 and debugserver-127.
      
      llvm-svn: 124063
      03813a4e
    • Greg Clayton's avatar
      Added a new variant of SBTarget::Launch() that deprectates the old one that · bd82a5d2
      Greg Clayton authored
      takes separate file handles for stdin, stdout, and stder and also allows for
      the working directory to be specified.
      
      Added support to "process launch" to a new option: --working-dir=PATH. We
      can now set the working directory. If this is not set, it defaults to that
      of the process that has LLDB loaded. Added the working directory to the
      host LaunchInNewTerminal function to allows the current working directory 
      to be set in processes that are spawned in their own terminal. Also hooked this
      up to the lldb_private::Process and all mac plug-ins. The linux plug-in had its
      API changed, but nothing is making use of it yet. Modfied "debugserver" and
      "darwin-debug" to also handle the current working directory options and modified
      the code in LLDB that spawns these tools to pass the info along.
      
      Fixed ProcessGDBRemote to properly pass along all file handles for stdin, stdout
      and stderr. 
      
      After clearing the default values for the stdin/out/err file handles for
      process to be NULL, we had a crasher in UserSettingsController::UpdateStringVariable
      which is now fixed. Also fixed the setting of boolean values to be able to
      be set as "true", "yes", "on", "1" for true (case insensitive) and "false", "no",
      "off", or "0" for false.
      
      Fixed debugserver to properly handle files for STDIN, STDOUT and STDERR that are not
      already opened. Previous to this fix debugserver would only correctly open and dupe
      file handles for the slave side of a pseudo terminal. It now correctly handles
      getting STDIN for the inferior from a file, and spitting STDOUT and STDERR out to
      files. Also made sure the file handles were correctly opened with the NOCTTY flag
      for terminals.
      
      llvm-svn: 124060
      bd82a5d2
    • Greg Clayton's avatar
      1b03cb5d
    • Greg Clayton's avatar
      Fixed a crasher that would happen when we run into malformed DWARF. It is · 61c2e57b
      Greg Clayton authored
      nice to know about the issue, but we shouldn't crash.
      
      llvm-svn: 124050
      61c2e57b
    • Greg Clayton's avatar
      Fixed an issue in "SBError SBProcess::Destroy ()" where it wasn't properly · 6779606a
      Greg Clayton authored
      checking the validity of the shared pointer prior to using it.
      
      Fixed the GDB remote plug-in to once again watch for a reply from the "k" 
      packet, and fixed the logic to make sure the thread requesting the kill
      and the async thread play nice (and very quickly) by synchronizing the
      packet sending and reply. I also tweaked some of the shut down packet
      ("k" kill, "D" detach, and the halt packet) to make sure they do the right
      thing.
      
      Fixed "StateType Process::WaitForProcessStopPrivate (...)" to correctly pass
      the timeout along to WaitForStateChangedEventsPrivate() and made the function
      behave correctly with respect to timing out.
      
      Added separate STDIN, STDOUT, and STDERR support to debugserver. Also added
      the start of being able to set the working directory for the inferior process.
      
      llvm-svn: 124049
      6779606a
  2. Jan 22, 2011
  3. Jan 21, 2011
  4. Jan 20, 2011
  5. Jan 19, 2011
Loading