在过去的几天里,我在Bochs安装Pintos。在“threads”目录中一切都编译得很好,我还设置了所有路径。我在构建目录中有kernel.lo和其他文件。
问题在于我运行的最后一个命令:
pintos运行报警倍数
这会产生一个错误:
无法识别的字符\x16;在if($pintos脚本第911行的代码是:

# Calls setitimer to set a timeout, then execs what was passed to us.
sub exec_setitimer {
if (defined $timeout) {
if ($  ge 5.8.0) {
    eval "
          use Time::HiRes qw(setitimer ITIMER_VIRTUAL);
          setitimer (ITIMER_VIRTUAL, $timeout, 0);
        ";
} else {
    { exec ("setitimer-helper", $timeout, @_); };
    exit 1 if !$!{ENOENT};
    print STDERR "warning: setitimer-helper is not installed, so ",
      "CPU time limit will not be enforced\n";
}
}
exec (@_);
exit (1);
}

我正在使用Debian-9 Stretch

最佳答案

我在ubuntu中重复了同样的步骤,结果成功了。似乎pintos在Debian上运行有问题。

09-25 20:14