我进行了系统调用并重新编译了内核,但是在运行系统调用时它返回了 Killed。因此,为了跟踪它,我使用了 strace,它显示了以下消息:
syscall_0x224(0x7ffda7199738, 0x7ffda7199748, 0x55743750a6d0, 0x7f9f20df7d80, 0x7f9f20df7d80, 0x7ffda7199730) = ?
这是什么意思(不是十六进制,问号)?
答案1
这意味着系统调用已终止,并且没有(无法)返回值。给出了一个例子手册strace
:
Interruption of a (restartable) system call by a signal delivery is
processed differently as kernel terminates the system call and also
arranges its immediate reexecution after the signal handler
completes.
read(0, 0x7ffff72cf5cf, 1) = ? ERESTARTSYS (To be restarted)
看来,就像你的系统调用一样,read
这里被终止了,并且没有返回值。 (与您的系统调用不同,read
这里被安排重新执行。)
其他不返回的系统调用(例如exit_group
)也显示?
:
~ strace -e exit_group /bin/true
exit_group(0) = ?
+++ exited with 0 +++