1*11be35a1SLionel Sambuc #define LIBNAME "pthread" 2*11be35a1SLionel Sambuc #include "sem.c" 3*11be35a1SLionel Sambuc ATF_TP_ADD_TCS(tp)4*11be35a1SLionel SambucATF_TP_ADD_TCS(tp) 5*11be35a1SLionel Sambuc { 6*11be35a1SLionel Sambuc 7*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, postwait); 8*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, initvalue); 9*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, destroy); 10*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, busydestroy); 11*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, blockwait); 12*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, blocktimedwait); 13*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, named); 14*11be35a1SLionel Sambuc ATF_TP_ADD_TC(tp, unlink); 15*11be35a1SLionel Sambuc 16*11be35a1SLionel Sambuc return atf_no_error(); 17*11be35a1SLionel Sambuc } 18