/platform/osx/platform/vars/condition.d

http://github.com/wilkie/djehuty · D · 18 lines · 5 code · 3 blank · 10 comment · 0 complexity · 5147ff4ee0685c7fad99523a0185596c MD5 · raw file

  1. /*
  2. * condition.d
  3. *
  4. * This struct contains implementation variables necessary for
  5. * using condition variables in Unix (pthread)
  6. *
  7. * Author: Dave Wilkinson
  8. * Originated: December 5th, 2009
  9. *
  10. */
  11. module platform.vars.condition;
  12. import platform.unix.common;
  13. struct ConditionPlatformVars {
  14. pthread_cond_t cond_id;
  15. }