如何使用setscheduler(需要包含什么)?
我正在尝试使用setscheduler(在linux(2.4)内核中)来更改一些参数, 我尝试编译我的文件,但收到错误:未定义的引用。 使用setscheduler需要包含哪些内容? 预先感谢您的帮助!
I am trying to use the setscheduler (in the linux (2.4) kernel) to change some parameters,
I tried to compile my file and I got an error:undefined reference.
what are the includes needed to use setscheduler ?
thanks in advance for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你很幸运,
#include
就位于手册页的顶部:)请注意,这些函数以
sched_
开头命名。这一点也很重要。 :)You're in luck, the
#include
is right at the top of the man page :)Note that the functions are named with a leading
sched_
. That bit is important too. :)