如何使用setscheduler(需要包含什么)?

发布于 2024-11-03 16:46:25 字数 108 浏览 1 评论 0原文

我正在尝试使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素食主义者 2024-11-10 16:46:25

你很幸运,#include 就位于手册页的顶部:)

<前><代码>名称
sched_setscheduler、sched_getscheduler - 设置和获取
调度策略/参数

概要
#include;

请注意,这些函数以 sched_ 开头命名。这一点也很重要。 :)

You're in luck, the #include is right at the top of the man page :)

NAME
       sched_setscheduler, sched_getscheduler - set and get
       scheduling policy/parameters

SYNOPSIS
       #include <sched.h>

Note that the functions are named with a leading sched_. That bit is important too. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文