/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
- /*
- * condition.d
- *
- * This struct contains implementation variables necessary for
- * using condition variables in Unix (pthread)
- *
- * Author: Dave Wilkinson
- * Originated: December 5th, 2009
- *
- */
- module platform.vars.condition;
- import platform.unix.common;
- struct ConditionPlatformVars {
- pthread_cond_t cond_id;
- }