DEBSOURCES
Skip Quicknav
sources / cctools / 9.9-2 / dttools / src / semaphore.h
123456789
#ifndef SEMAPHORE_H #define SEMAPHORE_H int semaphore_create( int value ); void semaphore_down( int s ); void semaphore_up( int s ); #endif