X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=blobdiff_plain;f=src%2Futils%2Fpintos;h=0d7b8bca2476fa7946ccf288dcabdfeb089e4ac6;hp=9de9f9a0c28be0560e1c63b056cd2aec93df302b;hb=fd24c2387f5cf1b802e885c7430ba1f1bb852e13;hpb=1f197c6861841bc0c27327c20b85e7b43b65affe diff --git a/src/utils/pintos b/src/utils/pintos index 9de9f9a..0d7b8bc 100755 --- a/src/utils/pintos +++ b/src/utils/pintos @@ -108,7 +108,7 @@ where each OPTION is one of the following options and each ARGUMENT is passed to Pintos kernel verbatim. Simulator selection: --bochs (default) Use Bochs as simulator - --qemu Use qemu as simulator + --qemu Use QEMU as simulator --player Use VMware Player as simulator Debugger selection: --no-debug (default) No debugger @@ -454,7 +454,7 @@ sub print_bochs_disk_line { } } -# Runs qemu. +# Runs QEMU. sub run_qemu { print "warning: qemu doesn't support --terminal\n" if $vga eq 'terminal'; @@ -707,7 +707,7 @@ sub run_command { # Relays common signals to the subprocess. # If $timeout is set then the subprocess will be killed after that long. sub xsystem { - # qemu turns off local echo and does not restore it if killed by a signal. + # QEMU turns off local echo and does not restore it if killed by a signal. # We compensate by restoring it ourselves. my $cleanup = sub {}; if (isatty (0)) {