/platform/osx/platform/vars/semaphore.d
D | 17 lines | 5 code | 3 blank | 9 comment | 0 complexity | 94425feba954ff71a8a88b5920e5803c MD5 | raw file
1/* 2 * semaphore.d 3 * 4 * This module implements the platform specifics for the Semaphore class. 5 * 6 * Author: Dave Wilkinson 7 * Originated: July 25th, 2009 8 * 9 */ 10 11module platform.vars.semaphore; 12 13import platform.osx.common; 14 15struct SemaphorePlatformVars { 16 sem_t sem_id; 17}