Home | History | Annotate | Download | only in test

Lines Matching refs:sched_setparam

1075         # POSIX states that calling sched_setparam() or sched_setscheduler() on
1081 posix.sched_setparam(0, param)
1085 self.assertRaises(OSError, posix.sched_setparam, -1, param)
1089 self.assertRaises(TypeError, posix.sched_setparam, 0, 43)
1091 self.assertRaises(TypeError, posix.sched_setparam, 0, param)
1094 self.assertRaises(OverflowError, posix.sched_setparam, 0, param)
1096 self.assertRaises(OverflowError, posix.sched_setparam, 0, param)