HomeSort by: relevance | last modified time | path
    Searched defs:thrd_create (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libpthread/
thrd.c 66 thrd_create(thrd_t *thr, thrd_start_t func, void *arg) function
  /src/tests/lib/libpthread/
t_thrd.c 44 ATF_TC(thrd_create); variable
45 ATF_TC_HEAD(thrd_create, tc)
47 atf_tc_set_md_var(tc, "descr", "Test C11 thrd_create(3)");
62 ATF_TC_BODY(thrd_create, tc)
71 ATF_REQUIRE_EQ(thrd_create(&t, tcr_func, v), thrd_success);
96 ATF_REQUIRE_EQ(thrd_create(&t, tcur_func, NULL), thrd_success);
121 ATF_REQUIRE_EQ(thrd_create(&t, tdet_func, NULL), thrd_success);
152 ATF_REQUIRE_EQ(thrd_create(&t, tex_func, NULL), thrd_success);
229 ATF_TP_ADD_TC(tp, thrd_create);

Completed in 27 milliseconds