1. 04 Sep, 2013 1 commit
  2. 03 Sep, 2013 1 commit
    • bmeurer@chromium.org's avatar
      Import ConditionVariable class. · 281de965
      bmeurer@chromium.org authored
      Condition variables are synchronization primitives that can be used
      to block one or more threads while waiting for condition to become
      true.
      
      Right now we have only semaphores, mutexes and atomic operations for
      synchronization, which results in quite complex solutions where an
      implementation using condition variables and mutexes would be straight
      forward.
      
      There's also a performance benefit to condition variables and mutexes
      vs semaphores, especially on Windows, where semaphores are kernel
      objects, while mutexes are implemented as fast critical sections,
      it CAN be beneficial performance-wise to use condition variables
      instead of semaphores.
      
      R=mstarzinger@chromium.org
      
      Review URL: https://codereview.chromium.org/23548007
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16492 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      281de965
  3. 26 Aug, 2013 1 commit
  4. 22 Aug, 2013 1 commit
  5. 05 Jul, 2013 1 commit
  6. 28 Jun, 2013 1 commit
  7. 21 Dec, 2012 2 commits
  8. 20 Jun, 2012 1 commit
  9. 21 May, 2012 1 commit
  10. 05 Apr, 2012 1 commit
  11. 12 Mar, 2012 1 commit
  12. 07 Dec, 2011 1 commit
  13. 05 Dec, 2011 1 commit
  14. 05 Aug, 2011 1 commit
  15. 21 Jun, 2011 1 commit
  16. 28 Apr, 2011 1 commit
  17. 15 Apr, 2011 1 commit
  18. 14 Apr, 2011 1 commit
  19. 12 Apr, 2011 1 commit
  20. 18 Mar, 2011 3 commits
  21. 17 Mar, 2011 1 commit
  22. 25 Feb, 2011 1 commit
  23. 24 Feb, 2011 1 commit
  24. 04 Feb, 2011 1 commit
  25. 25 Jan, 2011 1 commit
  26. 21 Jan, 2011 1 commit
  27. 19 Jan, 2011 1 commit
  28. 18 Jan, 2011 1 commit
  29. 02 Dec, 2010 1 commit
  30. 24 Sep, 2010 1 commit
  31. 23 Sep, 2010 1 commit
  32. 27 Jul, 2010 1 commit
  33. 29 Jun, 2010 1 commit
  34. 23 Jun, 2010 2 commits
  35. 17 May, 2010 1 commit
    • mark@chromium.org's avatar
      Allow build-time selection between ia32 and x86_64 in the GYP/Xcode Mac · e9b5d785
      mark@chromium.org authored
      Chromium build.
      
      v8.gyp no longer sets any V8_TARGET_ARCH_* macro on the Mac. Instead, the
      proper V8_TARGET_ARCH_* macro will be set by src/globals.h in the same way as
      the V8_HOST_ARCH_* macro when it detects that no target macro is currently
      defined. The Mac build will attempt to compile all ia32 and x86_64 .cc files.
      #ifdef guards in each of these target-specific source files prevent their
      compilation when the associated target is not selected. For completeness,
      these #ifdef guards are also provided for the arm and mips .cc files.
      
      BUG=706
      TEST=x86_64 Mac GYP/Xcode-based Chromium build (still depends on other changes)
      Review URL: http://codereview.chromium.org/2133003
      
      git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4666 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
      e9b5d785
  36. 03 May, 2010 1 commit