Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
aports
aports
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 647
    • Issues 647
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge Requests 196
    • Merge Requests 196
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Environments
  • Analytics
    • Analytics
    • CI / CD
    • Repository
    • Value Stream
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • alpine
  • aportsaports
  • Issues
  • #9188

Closed
Open
Opened Aug 05, 2018 by Glenn Sommer@GlemSom
  • Report abuse
  • New issue
Report abuse New issue

chrt from util-linux not working

“chrt” from util-linux/schedutils is currently using “sched_setscheduler()” for setting CPU scheduler and realtime priority.
The musl implementation of this function is just returning “1“, so ”chrt" is unable to change priority making ”chrt" nearly useless in AlpineLinux.

musl source-code: https://github.com/bpowers/musl/blob/master/src/sched/sched\_setscheduler.c

int sched_setscheduler(pid_t pid, int sched, const struct sched_param *param)
{
    return __syscall_ret(-ENOSYS);
}

(from redmine: issue id 9188, created on 2018-08-05, closed on 2019-01-23)

To upload designs, you'll need to enable LFS and have admin enable hashed storage. More information
Assignee
Assign to
3.9.0
Milestone
3.9.0 (Past due)
Assign milestone
Time tracking
None
Due date
None
2
Labels
Normal type:bug
Assign labels
  • View project labels
Reference: alpine/aports#9188