Skip to content
  1. Feb 20, 2013
  2. Feb 19, 2013
  3. Feb 17, 2013
  4. Feb 16, 2013
    • Greg Clayton's avatar
      <rdar://problem/13121056> · 8df92678
      Greg Clayton authored
      Fixed a crasher when the ConnectionFileDescriptor was used in a process with over FD_SETSIZE (1024) files open. It would corrupt the stack and cause the stack checker to assert and kill the program.
      
      The final fix was to "#define _DARWIN_UNLIMITED_SELECT" at the top of the one and only file that uses select () in the LLDB codebase and then make an array of "fd_set" objects so they can handle more than 1024 file descriptors. The new code can handle as many file descriptors as a process can create.    
          
      
      llvm-svn: 175378
      8df92678
    • Greg Clayton's avatar
      Added a kqueue class which isn't being used yet, but was part of trying to... · e48310dc
      Greg Clayton authored
      Added a kqueue class which isn't being used yet, but was part of trying to work around the limitations with the unix select() call and how it is limited to FD_SETSIZE file descriptors.
      
      Also added a TimeSpecTimeout class which can be used with any calls that take a "struct timespec *" as an argument. It is used by the KQueue class.
      
      Also updated some project settings.
      
      llvm-svn: 175377
      e48310dc
    • Filipe Cabecinhas's avatar
      Include a small argparse compatibility layer for Python < 2.7 · 103e16e4
      Filipe Cabecinhas authored
      llvm-svn: 175341
      103e16e4
    • Greg Clayton's avatar
      Get rid of a warning. · 7a168161
      Greg Clayton authored
      llvm-svn: 175337
      7a168161
    • Enrico Granata's avatar
      NSSet formatter is now C++ code · f615b80d
      Enrico Granata authored
      Split some NS* formatters in their own source files
      Refactored a utility function for the C++ formatters to use
      Fixed the skip-summary test case to be explicit about requiring libstdc++ for operation
      
      llvm-svn: 175323
      f615b80d
    • Sean Callanan's avatar
      Fixes in the IRInterpreter: · c8675507
      Sean Callanan authored
      - removed an unnecessary variable
      - fixed an issue where we sometimes
        wrote too much data into a buffer
      - made the recognition of variables
        as "this" a little more conservative
      
      <rdar://problem/13216268>
      
      llvm-svn: 175318
      c8675507
  5. Feb 15, 2013
Loading