Searched defs:sched_priority (Results 1 - 7 of 7) sorted by relevance

/external/kernel-headers/original/uapi/linux/sched/
H A Dtypes.h8 int sched_priority; member in struct:sched_param
44 * @sched_priority task's static priority (SCHED_FIFO/RR)
67 __u32 sched_priority; member in struct:sched_attr
/external/strace/
H A Dsched_attr.h11 uint32_t sched_priority; member in struct:sched_attr
/external/ltp/include/lapi/
H A Dsched.h36 uint32_t sched_priority; member in struct:sched_attr
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
H A D1-6.c71 struct sched_param sched_param = {.sched_priority = prio};
148 int sched_priority; member in struct:params
170 if (p->sched_priority != param.sched_priority) {
172 p->sched_priority, param.sched_priority);
177 run_hp_threads(p->sched_policy, p->sched_priority + 1);
257 p.sched_priority = get_prio(&tcases[i]);
259 init_attr(&attr, p.sched_policy, p.sched_priority);
262 sched_policy_name(p.sched_policy), p.sched_priority);
[all...]
/external/python/cpython3/Modules/clinic/
H A Dposixmodule.c.h1968 "sched_param(sched_priority)\n"
1971 "Current has only one field: sched_priority\");\n"
1973 " sched_priority\n"
1977 os_sched_param_impl(PyTypeObject *type, PyObject *sched_priority);
1983 static const char * const _keywords[] = {"sched_priority", NULL};
1985 PyObject *sched_priority; local
1988 &sched_priority)) {
1991 return_value = os_sched_param_impl(type, sched_priority);
/external/python/cpython3/Modules/
H A Dposixmodule.c5383 sched_priority: object
5386 Current has only one field: sched_priority");
5390 os_sched_param_impl(PyTypeObject *type, PyObject *sched_priority) argument
5398 Py_INCREF(sched_priority);
5399 PyStructSequence_SET_ITEM(res, 0, sched_priority);
5407 {"sched_priority", "the scheduling priority"},
5431 PyErr_SetString(PyExc_OverflowError, "sched_priority out of range");
5434 res->sched_priority = Py_SAFE_DOWNCAST(priority, long, int);
5497 priority = PyLong_FromLong(param.sched_priority);
/external/valgrind/include/vki/
H A Dvki-linux.h391 int sched_priority; member in struct:vki_sched_param

Completed in 792 milliseconds