6

我希望qemu打开并显示输出后的窗口在运行后自动关闭pintOS

就像我pintos -- run alarm-multipletcshshell 中运行命令一样,qemu 显示该进程开始,然后显示一些alarm-notifications然后进程结束,但之后 qemu 窗口不会关闭

我想在成功完成系统调用后退出窗口。

4

2 回答 2

5

更新:


新的解决方案

这是另一个更好的解决方案,适用于pintos run ...两者make grade

将此行添加到devices/shutdown.c :: shutdown_power_off(void)在循环之前。

outw( 0x604, 0x0 | 0x2000 ); 

旧解决方案

对于较新版本的 qemu,您需要使用选项运行它

-device isa-debug-exit

在任何写入 IO 端口时退出,默认为 0x501

src/utils目录下的pintos项目中,您需要在run_qemu子例程中的pintos文件中添加一行

sub run_qemu {
    print "warning: qemu doesn't support --terminal\n"
       if $vga eq 'terminal';
    print "warning: qemu doesn't support jitter\n"
       if defined $jitter;
    my (@cmd) = ('qemu-system-i386');

    push (@cmd, '-device', 'isa-debug-exit'); # <====== add this line
    ..
    ..
    push (@cmd, '-monitor', 'null') if $vga eq 'none' && $debug eq 'none';
    run_command (@cmd);
}

并在设备目录下的shutdown.c文件中,在for循环后的shutdown_power_off函数中添加这一行

for (p = s; *p != '\0'; p++)
    outb (0x8900, *p);

outb (0x501, 0x31); // <====== add this line

Qemu 的退出代码是值的两倍加一,所以没有办法干净地退出。使用 0x31 这应该导致 0x63 的 qemu 退出代码

最后使用 -q 选项运行 pintos

pintos -q run alarm-multiple
  • 注意:此解决方案将不起作用,make grade请参阅@pranav3688 下面的评论以获取解决方案。
于 2017-11-17T04:45:57.050 回答
0

[我认识到这个问题专门针对 pintos,但我发现自己从这里的答案中学习,足以在 Linux 下做到这一点。我想我会把它留在这里,以防其他人出于类似原因来到这个页面......]

我发现自己这样做是出于测试目的。这是我使用的代码(在 QEMU 会话中以 root 身份运行):

#include <stdio.h>
#include <stdlib.h>
#include <sys/io.h>
#include <unistd.h>

#define SHUTDOWN_PORT 0x604
#define EXIT_PORT     0x501

static void clean_exit(void) {
    ioperm(SHUTDOWN_PORT, 16, 1);
    outw(0x2000, SHUTDOWN_PORT);
}

int main(int argc, char **argv) {
    int status;
    if (argc != 2) {
        clean_exit();
    }
    status = atoi(argv[1]);
    printf("exiting with status %d (in three seconds)\n", status);
    sleep(3);
    if (!status) {
        clean_exit();
    }
    ioperm(EXIT_PORT, 8, 1);
    /*
     * status returned is 1+(2*orig_status)
     */
    outb(status-1, EXIT_PORT);
    printf("didn't exit.. did you include '-device isa-debug-exit'"
        " in qemu command?\n");
    exit(1);
}

我的 QEMU 环境映像非常稀疏,因此我将其静态编译如下:

$ gcc -O2 exit.c -o exit --static

用法:

   Just exit with status 0    # ./exit
   Same as above              # ./exit 0
   Exit with status 1         # ./exit 1
   Exit with status 1+2*(n-1) # ./exit n

出于我的目的,我只真正使用exit,exit 0exit 1.

于 2021-03-13T23:41:29.223 回答