Guest User

Untitled

a guest
Feb 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. --- libgo/runtime/yield.c Thu Oct 27 01:21:38 2011
  2. +++ libgo/runtime/yield.c Thu Oct 27 13:58:11 2011
  3. @@ -38,7 +38,11 @@
  4. void
  5. runtime_osyield (void)
  6. {
  7. +#if defined (sun)
  8. + sched_yield ();
  9. +#else
  10. pthread_yield ();
  11. +#endif
  12. }
  13.  
  14. /* Sleep for some number of microseconds. */
Add Comment
Please, Sign In to add comment