16 lines
420 B
C
16 lines
420 B
C
|
#ifndef UNITTEST_INTERNAL_INTTESTSEMAPHORE_H_
|
||
|
#define UNITTEST_INTERNAL_INTTESTSEMAPHORE_H_
|
||
|
class SemaphoreIF;
|
||
|
#include <string>
|
||
|
|
||
|
namespace testsemaph {
|
||
|
void testBinSemaph();
|
||
|
void testBinSemaphoreImplementation(SemaphoreIF* binSemaph, std::string id);
|
||
|
void testCountingSemaph();
|
||
|
void testCountingSemaphImplementation(SemaphoreIF* countingSemaph,
|
||
|
std::string id);
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif /* UNITTEST_INTERNAL_INTTESTSEMAPHORE_H_ */
|