修改_ldt在哪里?

发布于 2024-10-13 11:34:46 字数 333 浏览 3 评论 0原文

我正在寻找 modify_ldt 函数(或 < code>syscall) 在 ubuntu 上,但我在任何地方都找不到它的声明。它不在 sys/types.h 中(如手册页所示),也不在 linux/ldt.h 中(不存在)或 linux/unistd .h 如此处所述。

它位于哪里?

I am looking for the modify_ldt function (or constant for syscall) on ubuntu, but I can't find it's declaration anywhere. It's not in sys/types.h (as the man page suggests), nor in linux/ldt.h (doesn't exist) or linux/unistd.h as says here.

Where is it located?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一向肩并 2024-10-20 11:34:46

尝试使用 __NR_modify_ldt 作为系统调用常量。在我的系统上,它在 asm/unistd_64.h 中定义,它包含在 unistd.h

Try using __NR_modify_ldt for the syscall constant. On my system it's defined in asm/unistd_64.h, which is included from unistd.h

你爱我像她 2024-10-20 11:34:46

正如Karl已经说过的,直接调用系统调用。请参阅此处

As Karl already said, call system call directly. See here

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