Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. ulloa@rice15:~/pintos-cs140/src/userprog$ pintos --filesys-size=2 -p ../examples/echo -a echo -- -f -q run 'echo dog cat'
  2. Copying ../examples/echo to scratch partition...
  3. squish-pty bochs -q
  4. ========================================================================
  5. Bochs x86 Emulator 2.6.2
  6. Built from SVN snapshot on May 26, 2013
  7. Compiled on Jan 3 2019 at 12:00:35
  8. ========================================================================
  9. 00000000000i[ ] reading configuration from bochsrc.txt
  10. 00000000000e[ ] bochsrc.txt:8: 'user_shortcut' will be replaced by new 'keyboard' option.
  11. 00000000000i[ ] installing nogui module as the Bochs GUI
  12. 00000000000i[ ] using log file bochsout.txt
  13. PiLo hda1
  14. Loading..........
  15. Kernel command line: -f -q extract run 'echo dog cat'
  16. Pintos booting with 4,096 kB RAM...
  17. 383 pages available in kernel pool.
  18. 383 pages available in user pool.
  19. Calibrating timer... 164,200 loops/s.
  20. hda: 5,040 sectors (2 MB), model "BXHD00011", serial "Generic 1234"
  21. hda1: 173 sectors (86 kB), Pintos OS kernel (20)
  22. hda2: 4,096 sectors (2 MB), Pintos file system (21)
  23. hda3: 82 sectors (41 kB), Pintos scratch (22)
  24. filesys: using hda2
  25. scratch: using hda3
  26. Formatting file system...done.
  27. Boot complete.
  28. Extracting ustar archive from scratch device into file system...
  29. Putting 'echo' into the file system...
  30. Erasing ustar archive...
  31. Executing 'echo dog cat':
  32. running: echo dog cat
  33. File name in start_process: echo
  34. echo dog cat
  35. strlen(echo) + null terminator: 5
  36. strlen(dog) + null terminator: 4
  37. strlen(cat) + null terminator: 4
  38. argc: 3
  39. args_buffer until first null term: echo
  40. Start: c0000000
  41. After pointer array: bffffff3
  42. Element most recently added to stack: echo
  43. Padding: 7
  44. After padding: bfffffec
  45. ESP TEMP: bffffff3
  46. (0)Copied pointer for echo as bffffff3 (bffffff3).
  47. (1)Copied pointer for dog as bffffff8 (bffffff8).
  48. (2)Copied pointer for cat as bffffffc (bffffffc).
  49. After adding pointers: bfffffe0
  50. Element most recently added to stack: bffffff3
  51. After argv: bfffffdc
  52. After argc: bfffffd8
  53. After ret addr: bfffffd4
  54. Stack setup successful
  55. Start address: 80480ec
  56. Stack pointer: bfffffd4
  57. Issue is not in palloc_free_page.
  58. echo dog cat
  59. echo dog cat: exit(0)
  60. Execution of 'echo dog cat' complete.
  61. Timer: 775 ticks
  62. Thread: 0 idle ticks, 689 kernel ticks, 89 user ticks
  63. hda2 (filesys): 59 reads, 168 writes
  64. hda3 (scratch): 81 reads, 2 writes
  65. Console: 1632 characters output
  66. Keyboard: 0 keys pressed
  67. Exception: 0 page faults
  68. Powering off..========================================================================
  69. Bochs is exiting with the following message:
  70. [ACPI ] ACPI control: soft power off
  71. ========================================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement