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

  /src/tests/lib/librt/
t_sched.c 43 ATF_TC(sched_getparam);
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...]
  /src/include/
sched.h 44 int sched_getparam(pid_t, struct sched_param *);
  /src/tests/lib/libc/gen/posix_spawn/
t_spawnattr.c 85 RL(sched_getparam(0, &param));
152 RL(sched_getparam(pid, &child_sp));
  /src/lib/libc/sys/
sched.c 59 sched_getparam(pid_t pid, struct sched_param *param) function in typeref:typename:int
  /src/lib/librt/
Makefile 37 MLINKS+= sched.3 sched_getparam.3
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_interceptors.inc 3638 INTERCEPTOR(int, sched_getparam, int pid, void *param) {
3640 COMMON_INTERCEPTOR_ENTER(ctx, sched_getparam, pid, param);
3641 int res = REAL(sched_getparam)(pid, param);
3645 #define INIT_SCHED_GETPARAM COMMON_INTERCEPT_FUNCTION(sched_getparam);

Completed in 19 milliseconds