修改_ldt在哪里?
我正在寻找 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 __NR_modify_ldt 作为系统调用常量。在我的系统上,它在
asm/unistd_64.h
中定义,它包含在unistd.h
中Try using
__NR_modify_ldt
for the syscall constant. On my system it's defined inasm/unistd_64.h
, which is included fromunistd.h
正如Karl已经说过的,直接调用系统调用。请参阅此处
As Karl already said, call system call directly. See here