Message316235
To wrap “posix_spawnattr_setschedparam” perhaps you could combine it with the scheduler policy:
# Inherit current policy and parameters:
posix_spawn(..., scheduler=None)
# Set new policy with parameters:
posix_spawn(..., scheduler=(policy, param))
# Inherit current policy but set new parameters:
posix_spawn(..., scheduler=(None, param)) |
|
| Date |
User |
Action |
Args |
| 2018-05-06 14:02:23 | martin.panter | set | recipients:
+ martin.panter, gregory.p.smith, vstinner, benjamin.peterson, ned.deily, alex, dhduvall, neologix, gennad, serhiy.storchaka, John Jones, pablogsal, miss-islington |
| 2018-05-06 14:02:23 | martin.panter | set | messageid: <[email protected]> |
| 2018-05-06 14:02:23 | martin.panter | link | issue20104 messages |
| 2018-05-06 14:02:23 | martin.panter | create | |
|