《操作系统》的实验代码。
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

42 Zeilen
1.2 KiB

  1. {
  2. "tasks": [
  3. {
  4. "label": "make gdb",
  5. "type": "shell",
  6. "command": "bash ${workspaceFolder}/background.sh",
  7. "isBackground": true,
  8. "options": {
  9. "env": {
  10. "DISPLAY": ":0",
  11. },
  12. "cwd": "${workspaceFolder}/labcodes_answer/lab1_result"
  13. },
  14. "problemMatcher": [
  15. {
  16. "pattern": [
  17. {
  18. "regexp": ".",
  19. "file": 1,
  20. "location": 2,
  21. "message": 3
  22. }
  23. ],
  24. "background": {
  25. "activeOnStart": true,
  26. "beginsPattern": "starting QEMU",
  27. "endsPattern": "starting QEMU",
  28. }
  29. }
  30. ]
  31. },
  32. {
  33. "label": "shutdown gdb",
  34. "type": "process",
  35. "command": "pkill",
  36. "isBackground": false,
  37. "args": ["qemu-system-i38"], // i38i386
  38. },
  39. ],
  40. "version": "2.0.0"
  41. }