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

  /src/lib/libc/sys/
sched.c 59 sched_getparam(pid_t pid, struct sched_param *param) function
  /src/tests/lib/librt/
t_sched.c 43 ATF_TC(sched_getparam); variable
44 ATF_TC_HEAD(sched_getparam, tc)
46 atf_tc_set_md_var(tc, "descr", "A basic test of sched_getparam(3)");
49 ATF_TC_BODY(sched_getparam, tc)
58 ATF_REQUIRE(sched_getparam(0, &s1) == 0);
59 ATF_REQUIRE(sched_getparam(p, &s2) == 0);
67 ATF_REQUIRE(sched_getparam(-1, &s1) != 0);
125 * And that sched_getparam(3) returns the new priority.
129 ATF_REQUIRE(sched_getparam(0, &sched) == 0);
249 ATF_TP_ADD_TC(tp, sched_getparam);
    [all...]

Completed in 14 milliseconds