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