Skip to content
  1. May 18, 2016
    • Marshall Clow's avatar
      Change the control flow in atomic_compare_exchange_strong to avoid a potential deadlock. · 3379baeb
      Marshall Clow authored
      When you assign a shared_ptr, the deleter gets called and assigned. In this routine, the assignment happens inside a critical section, which could (potentially) lead to a deadlock, if the deleter did something wonky. Now we swap the old value with an (empty) temporary shared_ptr, and then let the temporary delete the old value when it goes out of scope (after the lock has been released).  This should fix PR#27724. Thanks to Hans Boehm for the bug report and the suggested fix.
      
      llvm-svn: 269965
      3379baeb
  2. May 17, 2016
  3. May 16, 2016
  4. May 07, 2016
  5. May 06, 2016
    • Asiri Rathnayake's avatar
      Refactor pthread usage of libcxx. · c7e4239f
      Asiri Rathnayake authored
      This patch extracts out all the pthread dependencies of libcxx into the
      new header __threading_support. The motivation is to make it easy to
      re-target libcxx into platforms that do not support pthread.
      
      Original patch from Fulvio Esposito (fulvio.esposito@outlook.com) - D11781
      
      Applied with tweaks - D19412
      
      Change-Id: I301111f0075de93dd8129416e06babc195aa936b
      llvm-svn: 268734
      c7e4239f
  6. May 04, 2016
  7. May 03, 2016
  8. Apr 30, 2016
  9. Apr 29, 2016
  10. Apr 22, 2016
  11. Apr 21, 2016
  12. Apr 20, 2016
    • Eric Fiselier's avatar
      [libcxx] Fix PR15638 - Only allocate in parent when starting a thread to prevent calling terminate. · e08afaf8
      Eric Fiselier authored
      Summary:
      Hi,
      
      When creating a new thread libc++ performs at least 2 allocations. The first allocates a tuple of args and the functor that will be passed to the new thread. The second allocation is for the thread local storage needed internally by libc++. Currently the second allocation happens in the child thread, meaning that if it throws the program will terminate with an uncaught bad alloc.
      
      The solution to this is to allocate ALL memory in the parent thread and then pass it to the child.
      
      See https://llvm.org/bugs/show_bug.cgi?id=15638
      
      Reviewers: mclow.lists, danalbert, jroelofs, EricWF
      
      Subscribers: cfe-commits
      
      Differential Revision: http://reviews.llvm.org/D13748
      
      llvm-svn: 266851
      e08afaf8
    • Eric Fiselier's avatar
      Add 'is_callable' and 'is_nothrow_callable' traits and cleanup INVOKE. · 840fa745
      Eric Fiselier authored
      The primary purpose of this patch is to add the 'is_callable' traits.
      Since 'is_nothrow_callable' required making 'INVOKE' conditionally noexcept
      I also took this oppertunity to implement a constexpr version of INVOKE.
      This fixes 'std::experimental::apply' which required constexpr 'INVOKE support'.
      
      This patch will be followed up with some cleanup. Primarly removing most
      of "__member_function_traits" since it's no longer used by INVOKE (in C++11 at least).
      
      llvm-svn: 266836
      840fa745
  13. Apr 19, 2016
  14. Apr 18, 2016
  15. Apr 16, 2016
  16. Apr 15, 2016
  17. Apr 13, 2016
  18. Apr 11, 2016
  19. Apr 07, 2016
  20. Apr 05, 2016
Loading