mirror of https://github.com/python/cpython
Close issue 12952: Solaris/Illumos (OpenIndiana) Scheduling policies
This commit is contained in:
parent
1e1c8f4913
commit
f2cb4e8b35
|
@ -11301,12 +11301,12 @@ all_ins(PyObject *d)
|
|||
#endif
|
||||
|
||||
#ifdef HAVE_SCHED_H
|
||||
if (ins(d, "SCHED_OTHER", (long)SCHED_OTHER)) return -1;
|
||||
if (ins(d, "SCHED_FIFO", (long)SCHED_FIFO)) return -1;
|
||||
if (ins(d, "SCHED_RR", (long)SCHED_RR)) return -1;
|
||||
#ifdef SCHED_SPORADIC
|
||||
if (ins(d, "SCHED_SPORADIC", (long)SCHED_SPORADIC) return -1;
|
||||
#endif
|
||||
if (ins(d, "SCHED_OTHER", (long)SCHED_OTHER)) return -1;
|
||||
#ifdef SCHED_BATCH
|
||||
if (ins(d, "SCHED_BATCH", (long)SCHED_BATCH)) return -1;
|
||||
#endif
|
||||
|
@ -11316,6 +11316,18 @@ all_ins(PyObject *d)
|
|||
#ifdef SCHED_RESET_ON_FORK
|
||||
if (ins(d, "SCHED_RESET_ON_FORK", (long)SCHED_RESET_ON_FORK)) return -1;
|
||||
#endif
|
||||
#ifdef SCHED_SYS
|
||||
if (ins(d, "SCHED_SYS", (long)SCHED_SYS)) return -1;
|
||||
#endif
|
||||
#ifdef SCHED_IA
|
||||
if (ins(d, "SCHED_IA", (long)SCHED_IA)) return -1;
|
||||
#endif
|
||||
#ifdef SCHED_FSS
|
||||
if (ins(d, "SCHED_FSS", (long)SCHED_FSS)) return -1;
|
||||
#endif
|
||||
#ifdef SCHED_FX
|
||||
if (ins(d, "SCHED_FX", (long)SCHED_FSS)) return -1;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_ATTR_XATTR_H
|
||||
|
|
Loading…
Reference in New Issue