Searched refs:sched_getparam (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/netbsd-tests/lib/librt/
H A Dt_sched.c42 ATF_TC(sched_getparam); variable
43 ATF_TC_HEAD(sched_getparam, tc)
45 atf_tc_set_md_var(tc, "descr", "A basic test of sched_getparam(3)");
48 ATF_TC_BODY(sched_getparam, tc)
57 ATF_REQUIRE(sched_getparam(0, &s1) == 0);
58 ATF_REQUIRE(sched_getparam(p, &s2) == 0);
66 ATF_REQUIRE(sched_getparam(-1, &s1) != 0);
120 * And that sched_getparam(3) returns the new priority.
124 ATF_REQUIRE(sched_getparam(0, &sched) == 0);
244 ATF_TP_ADD_TC(tp, sched_getparam);
[all...]
/freebsd-11-stable/tools/regression/p1003_1b/
H A Dprutil.c46 if (sched_getparam(0, &param))
47 quit("sched_getparam");
H A Dsched.c179 q(__LINE__, sched_getparam(0, &shouldbe), "sched_getparam");
194 q(__LINE__, sched_getparam(0, &shouldbe),
195 "sched_getparam");
259 q(__LINE__, sched_getparam(0, &rt_param), "sched_getparam");
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/posix_spawn/
H A Dt_spawnattr.c85 sched_getparam(0, &param);
152 sched_getparam(pid, &child_sp);
/freebsd-11-stable/sys/kern/
H A Dcapabilities.conf549 sched_getparam
H A Dp1003_1b.c86 SYSCALL_NOT_PRESENT_GEN(sched_getparam)
/freebsd-11-stable/sys/compat/freebsd32/
H A Dcapabilities.conf217 sched_getparam
/freebsd-11-stable/sys/sys/
H A Dsched.h236 int sched_getparam(pid_t, struct sched_param *);
H A Dsyscall.mk206 sched_getparam.o \
/freebsd-11-stable/lib/libc/sys/
H A DMakefile.inc434 MLINKS+=sched_setparam.2 sched_getparam.2
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_misc.c2120 if (ldebug(sched_getparam))
2121 printf(ARGS(sched_getparam, "%d, *"), uap->pid);
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dz_Linux_util.cpp652 sched_getparam(0, &param);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3674 INTERCEPTOR(int, sched_getparam, int pid, void *param) {
3676 COMMON_INTERCEPTOR_ENTER(ctx, sched_getparam, pid, param);
3677 int res = REAL(sched_getparam)(pid, param);
3681 #define INIT_SCHED_GETPARAM COMMON_INTERCEPT_FUNCTION(sched_getparam);

Completed in 270 milliseconds