1. 20 Jun, 2013 14 commits
  2. 19 Jun, 2013 24 commits
  3. 18 Jun, 2013 2 commits
    • compiler, runtime: Use function descriptors. · fdbc38a6
      This changes the representation of a Go value of function type
      from being a pointer to function code (like a C function
      pointer) to being a pointer to a struct.  The first field of
      the struct points to the function code.  The remaining fields,
      if any, are the addresses of variables referenced in enclosing
      functions.  For each call to a function, the address of the
      function descriptor is passed as the last argument.
      
      This lets us avoid generating trampolines, and removes the use
      of writable/executable sections of the heap.
      
      From-SVN: r200181
      Ian Lance Taylor committed
    • re PR libstdc++/57641 (std::timed_mutex.try_lock_until() is broken) · 25e00ab6
      	PR libstdc++/57641
      	* include/std/mutex (timed_mutex, recursive_timed_mutex): Move common
      	functionality to new __timed_mutex_impl mixin. Overload try_lock_until
      	to handle conversion between different clocks. Replace constrained
      	__try_lock_for_impl overloads with conditional increment.
      	* include/std/shared_mutex (shared_mutex::_Mutex): Use the new mixin.
      	* testsuite/30_threads/timed_mutex/try_lock_until/57641.cc: New.
      
      From-SVN: r200180
      Jonathan Wakely committed