99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

2024 ICS 代做、代寫 C++語言程序
2024 ICS 代做、代寫 C++語言程序

時間:2025-01-06  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



2024 ICS Lab4: Tiny Shell
Assigned: Dec. 02, Due: Sat, Jan. 04, 2025, 11:59PM
Introduction
The purpose of this lab is to become more familiar with the concepts of process control and signalling. You’ll do this by writing a simple Unix shell program that supports job control.
Logistics
Any clarifications and revisions to the lab will be posted on the course Web page.
Hand Out Instructions
You can get the Tiny Shell Lab with git from the ICS Course Server, you just need to switch lab4 branch
git fetch
git checkout lab4
It contains 26 files, one of which is called “README”. Please read “README” to check if you have all the files.
After making sure you get the right handout. Then do the following:
• Type the command make to compile and link some test routines.
• Type your name and student ID in the header comment at the top of tsh.c.
Looking at the tsh.c (tiny shell) file, you will see that it contains a functional skeleton of a simple Unix shell. To help you get started, we have already implemented the less interesting functions. Your assignment is to complete the remaining empty functions listed below. As a sanity check for you, we’ve listed the approximate number of lines of code for each of these functions in our reference solution (which includes lots of comments).
1

• eval: Main routine that parses and interprets the command line. [70 lines]
• builtin_cmd: Recognizes and interprets the built-in commands: quit, fg, bg, and jobs. [25 lines]
• do_bgfg: Implements the bg and fg built-in commands. [50 lines]
• waitfg: Waits for a foreground job to complete. [20 lines]
• sigchld_handler: Catches SIGCHILD signals. 80 lines]
• sigint_handler: Catches SIGINT (ctrl-c) signals. [15 lines]
• sigtstp_handler: Catches SIGTSTP (ctrl-z) signals. [15 lines]
Each time you modify your tsh.c file, type make to recompile it. To run your shell, type tsh to the command line:
unix> ./tsh
tsh> [type commands to your shell here]
General Overview of Unix Shells
A shell is an interactive command-line interpreter that runs programs on behalf of the user. A shell repeatedly prints a prompt, waits for a command line on stdin, and then carries out some action, as directed by the contents of the command line.
The command line is a sequence of ASCII text words delimited by whitespace. The first word in the command line is either the name of a built-in command or the pathname of an executable file. The remaining words are command-line arguments. If the first word is a built-in command, the shell immediately executes the command in the current process. Otherwise, the word is assumed to be the pathname of an executable program. In this case, the shell forks a child process, then loads and runs the program in the context of the child. The child processes created as a result of interpreting a single command line are known collectively as a job. In general, a job can consist of multiple child processes connected by Unix pipes.
If the command line ends with an ampersand ”&”, then the job runs in the background, which means that the shell does not wait for the job to terminate before printing the prompt and awaiting the next command line. Otherwise, the job runs in the foreground, which means that the shell waits for the job to terminate before awaiting the next command line. Thus, at any point in time, at most one job can be running in the foreground. However, an arbitrary number of jobs can run in the background.
For example, typing the command line tsh> jobs
causes the shell to execute the built-in jobs command. Typing the command line T 2

tsh> /bin/ls -l -d
runs the ls program in the foreground. By convention, the shell ensures that when the program begins executing its main routine
int main(int argc, char *argv[])
the argc and argv arguments have the following values:
• argc == 3,
• argv[0] == “/bin/ls”, • argv[1]== “-l”,
• argv[2]== “-d”.
Alternatively, typing the command line tsh> /bin/ls -l -d &
runs the ls program in the background.
Unix shells support the notion of job control, which allows users to move jobs back and forth between background and foreground, and to change the process state (running, stopped, or terminated) of the processes in a job. Typing ctrl-c causes a SIGINT signal to be delivered to each process in the foreground job. The default action for SIGINT is to terminate the process. Similarly, typing ctrl-z causes a SIGTSTP signal to be delivered to each process in the foreground job. The default action for SIGTSTP is to place a process in the stopped state, where it remains until it is awakened by the receipt of a SIGCONT signal. Unix shells also provide various built-in commands that support job control. For example:
• jobs: List the running and stopped background jobs.
• bg <job>: Change a stopped background job to a running background job.
• fg <job>: Change a stopped or running background job to a running in the foreground. • kill <job>: Terminate a job.
The tsh Specification
Your tsh shell should have the following features: • The prompt should be the string “tsh> ”.
3

• The command line typed by the user should consist of a name and zero or more arguments, all separated by one or more spaces. If name is a built-in command, then tsh should handle it immediately and wait for the next command line. Otherwise, tsh should assume that name is the path of an executable file, which it loads and runs in the context of an initial child process (In this context, the term job refers to this initial child process).
• tsh need not support pipes (|) or I/O redirection (< and >).
• Typing ctrl-c (ctrl-z) should cause a SIGINT (SIGTSTP) signal to be sent to the current foreground job, as well as any descendents of that job (e.g., any child processes that it forked). If there is no foreground job, then the signal should have no effect.
• If the command line ends with an ampersand &, then tsh should run the job in the back- ground. Otherwise, it should run the job in the foreground.
• Each job can be identified by either a process ID (PID) or a job ID (JID), which is a positive integer assigned by tsh. JIDs should be denoted on the command line by the prefix ’%’. For example, “%5” denotes JID 5, and “5” denotes PID 5. (We have provided you with all of the routines you need for manipulating the job list.)
• tsh should support the following built-in commands:
– The quit command terminates the shell.
– The jobs command lists all background jobs.
– The bg <job> command restarts <job> by sending it a SIGCONT signal, and then runs it in the background. The <job> argument can be either a PID or a JID.
– The fg <job> command restarts <job> by sending it a SIGCONT signal, and then runs it in the foreground. The <job> argument can be either a PID or a JID.
• tsh should reap all of its zombie children. If any job terminates because it receives a signal that it didn’t catch, then tsh should recognize this event and print a message with the job’s PID and a description of the offending signal.
Checking Your Work
We have provided some tools to help you check your work. Before you run any executable program, please make sure it has the execution permission. If not, use “chmod +x” to give it the execution permission.
Reference solution. The Linux executable tshref is the reference solution for the shell. Run this program to resolve any questions you have about how your shell should behave. Your shell should emit output that is identical to the reference solution (except for PIDs, of course, which change from run to run).
Shell driver. The sdriver.pl program executes a shell as a child process, sends it commands and signals as directed by a trace file, and captures and displays the output from the shell.
Use the -h argument to find out the usage of sdriver.pl: 4

unix> ./sdriver.pl -h
Usage: sdriver.pl [-hv] -t <trace> -s <shellprog> -a <args> Options:
-h -v -t -s -a -g
<trace> <shell> <args>
Print this message Be more verbose
Trace file
Shell program to test
Shell arguments
Generate output for autograder
We have also provided 16 trace files (trace{01-16}.txt) that you will use in conjunction with the shell driver to test the correctness of your shell. The lower-numbered trace files do very simple tests, and the higher-numbered tests do more complicated tests.
You can run the shell driver on your shell using trace file trace01.txt (for instance) by typing: unix> ./sdriver.pl -t trace01.txt -s ./tsh -a ”-p”
(the -a ”-p” argument tells your shell not to emit a prompt), or
unix> make test01
Similarly, to compare your result with the reference shell, you can run the trace driver on the reference shell by typing:
unix> ./sdriver.pl -t trace01.txt -s ./tshref -a ”-p”
or
unix> make rtest01
For your reference, tshref.out gives the output of the reference solution on all races. This might be more convenient for you than manually running the shell driver on all trace files.
The neat thing about the trace files is that they generate the same output you would have gotten had you run your shell interactively (except for an initial comment that identifies the trace). For example:
bass> make test15
./sdriver.pl -t trace15.txt -s ./tsh -a ”-p” #
# trace15.txt - Putting it all together
#
tsh> ./bogus
./bogus: Command not found.
tsh> ./myspin 10
Job (9721) terminated by signal 2
tsh> ./myspin 3 &
[1] (9723) ./myspin 3 &
5

tsh> ./myspin 4 &
[2] (9725) ./myspin 4 &
tsh> jobs
[1] (9723) Running ./myspin 3 & [2] (9725) Running ./myspin 4 & tsh> fg %1
Job [1] (9723) stopped by signal 20 tsh> jobs
[1] (9723) Stopped
[2] (9725) Running
tsh> bg %3
%3: No such job
tsh> bg %1
[1] (9723) ./myspin 3 &
tsh> jobs
[1] (9723) Running
[2] (9725) Running
tsh> fg %1
tsh> quit
bass>
Hints
• Read every word of Chapter 8 (Exceptional Control Flow) in your textbook.
• Use the trace files to guide the development of your shell. Starting with trace01.txt, make sure that your shell produces the identical output as the reference shell. Then move on to trace file trace02.txt, and so on.
• The waitpid, kill, fork, execve, setpgid, and sigprocmask functions will come in very handy. The WUNTRACED and WNOHANG options to waitpid will also be useful.
• When you implement your signal handlers, be sure to send SIGINT and SIGTSTP signals to the entire foreground process group, using ”-pid” instead of ”pid” in the argument to the kill function. The sdriver.pl program tests for this error.
• One of the tricky parts of the lab is deciding on the allocation of work between the waitfg and sigchld_handler functions. We recommend the following approach:
– In waitfg, use a busy loop around the sleep function. – In sigchld_handler, use exactly one call to waitpid.
While other solutions are possible, such as calling waitpid in both waitfg and sigchld_handler, these can be very confusing. It is simpler to do all reaping in the handler.
• In eval, the parent must use sigprocmask to block SIGCHLD signals before it forks the child, and then unblock these signals, again using sigprocmask after it adds the child to the job list
6
./myspin 3 & ./myspin 4 &
./myspin 3 & ./myspin 4 &

by calling addjob. Since children inherit the blocked vectors of their parents, the child must be sure to then unblock SIGCHLD signals before it execs the new program.
The parent needs to block the SIGCHLD signals in this way in order to avoid the race condition where the child is reaped by sigchld_handler (and thus removed from the job list) before the parent calls addjob.
• Programs such as more, less, vi, and emacs do strange things with the terminal settings. Don’t run these programs from your shell. Stick with simple text-based programs such as /bin/ls, /bin/ps, and /bin/echo.
• When you run your shell from the standard Unix shell, your shell is running in the foreground process group. If your shell then creates a child process, by default that child will also be a member of the foreground process group. Since typing ctrl-c sends a SIGINT to every process in the foreground group, typing ctrl-c will send a SIGINT to your shell, as well as to every process that your shell created, which obviously isn’t correct.
Here is the workaround: After the fork, but before the execve, the child process should call setpgid(0, 0), which puts the child in a new process group whose group ID is identical to the child’s PID. This ensures that there will be only one process, your shell, in the foreground process group. When you type ctrl-c, the shell should catch the resulting SIGINT and then forward it to the appropriate foreground job (or more precisely, the process group that contains the foreground job).
Evaluation
Your score will be computed out of a maximum of ** points based on the following distribution:
80 Correctness: 16 trace files at 5 points each.
10 Style points. We expect you to have good comments (5 pts) and to check the return value of EVERY system call (5 pts).
Your solution shell will be tested for correctness on a Linux machine, using the same shell driver and trace files that were included in your lab directory. Your shell should produce identical output on these traces as the reference shell, with only two exceptions:
• The PIDs can (and will) be different.
• The output of the /bin/ps commands in trace11.txt, trace12.txt, and trace13.txt will be different from run to run. However, the running states of any mysplit processes in the output of the /bin/ps command should be identical.
We have provided you with a test le called grade-shlab.pl. Following is the example of correct case:
7

unix> ./grade-shlab.pl -f tsh.c
CS:APP Shell Lab: Grading Sheet for tsh.c
Part 0: Compiling your shell
gcc -Wall -O2 tsh.c -o tsh
gcc -Wall -O2 myspin.c -o myspin gcc -Wall -O2 mysplit.c -o mysplit gcc -Wall -O2 mystop.c -o mystop gcc -Wall -O2 myint.c -o myint
Part 1: Correctness Tests
Checking trace01.txt...
Checking trace02.txt...
Checking trace03.txt...
Checking trace04.txt...
Checking trace05.txt...
Checking trace06.txt...
Checking trace07.txt...
Checking trace08.txt...
Checking trace09.txt...
Checking trace10.txt...
Checking trace11.txt...
Checking trace12.txt...
Checking trace13.txt...
Checking trace14.txt...
Checking trace15.txt...
Checking trace16.txt... Preliminary correctness score: 80
Hand In Instructions
• You only need to commit the tsh.c file to svn server if you modify it.
• Make sure you have included your name and student ID in the header comment of tsh.c.
We strongly recommend you to multiple commit your code to svn during implementation. Good luck! Have fun!
8

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp


 

掃一掃在手機打開當前頁
  • 上一篇:合肥搬家 合肥肥東搬家 合肥安穩穩搬家公司
  • 下一篇:MSc/MEng代做、代寫C/C++語言程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                国产一区二区三区观看| 国产精品自拍av| 美女mm1313爽爽久久久蜜臀| 亚洲女子a中天字幕| 亚洲一区在线视频| 樱花草国产18久久久久| 国产成人精品在线看| 国产精品福利电影一区二区三区四区| 麻豆精品一二三| 久久亚洲精华国产精华液| 成人免费毛片嘿嘿连载视频| 伊人婷婷欧美激情| 91精品国产综合久久香蕉的特点| 免费av成人在线| 中文字幕成人在线观看| 91视频一区二区| 精品在线免费观看| 亚洲国产另类精品专区| 欧美日韩精品系列| 国产成人精品综合在线观看| 午夜精品久久一牛影视| 国产精品久久久久久久久图文区| 欧美日韩精品欧美日韩精品一综合| 国产在线国偷精品免费看| 亚洲一区二区三区中文字幕| 国产午夜精品理论片a级大结局| 欧美影院一区二区| 成人va在线观看| 蜜臀av性久久久久蜜臀aⅴ流畅 | 欧美系列一区二区| 懂色av中文一区二区三区 | 亚洲国产精品久久人人爱蜜臀| 精品乱码亚洲一区二区不卡| 91黄色免费观看| 国产精品1区2区| 久久精品国产99国产| 亚洲一区二区视频在线| 亚洲色欲色欲www| 中文字幕电影一区| 久久伊人蜜桃av一区二区| 欧美日韩一区二区三区四区| fc2成人免费人成在线观看播放| 美腿丝袜亚洲三区| 奇米亚洲午夜久久精品| 视频在线在亚洲| 亚洲国产精品影院| 亚洲自拍与偷拍| 一级做a爱片久久| 亚洲男人的天堂一区二区 | 亚洲视频中文字幕| 国产欧美va欧美不卡在线| 欧美电影免费观看高清完整版在线观看 | 91精品国产综合久久精品图片| 免费观看久久久4p| 捆绑调教一区二区三区| 日本伊人色综合网| 日本不卡高清视频| 激情伊人五月天久久综合| 老司机午夜精品| 日韩美女视频一区二区在线观看| 91精品福利在线| 国产成人精品aa毛片| 国产麻豆一精品一av一免费| 精品午夜久久福利影院| 美国毛片一区二区| 秋霞成人午夜伦在线观看| 性久久久久久久久| 麻豆精品国产91久久久久久| 国产又粗又猛又爽又黄91精品| 国产乱码字幕精品高清av| 成人亚洲精品久久久久软件| 97久久超碰精品国产| 欧美日韩视频在线一区二区| 欧美日韩一区二区欧美激情| 欧美日韩免费视频| 亚洲精品在线三区| 亚洲欧洲国产专区| 亚洲成人一二三| 激情五月婷婷综合网| 成人精品视频.| 欧美久久久一区| 久久这里只有精品6| 日韩一区欧美小说| 日本一不卡视频| 国产精品影视在线观看| 99久久国产综合精品女不卡| 777欧美精品| 中文字幕不卡在线播放| 日韩中文字幕不卡| 91麻豆福利精品推荐| 日韩欧美在线不卡| 亚洲精品欧美二区三区中文字幕| 日本欧美一区二区三区乱码| 福利视频网站一区二区三区| 欧美高清性hdvideosex| 中文字幕亚洲视频| 国产一区二区三区精品欧美日韩一区二区三区 | 国产视频911| 午夜一区二区三区在线观看| 国产裸体歌舞团一区二区| 久久久久久影视| 在线免费一区三区| 国产精品久久久久久久蜜臀| 中文字幕不卡三区| 蜜臀av一区二区在线免费观看| 色综合久久久久| 久久婷婷一区二区三区| 中文字幕亚洲一区二区av在线| 麻豆91精品91久久久的内涵| 97精品国产97久久久久久久久久久久| 国产精品亚洲综合一区在线观看| 99精品偷自拍| 91精品国产91久久久久久最新毛片| 日本一区二区久久| 久久97超碰国产精品超碰| 色欧美片视频在线观看| 国产精品丝袜在线| 激情亚洲综合在线| 欧美日韩国产成人在线免费| 最新热久久免费视频| 成人综合婷婷国产精品久久蜜臀 | 欧美最猛黑人xxxxx猛交| 国产精品夫妻自拍| 不卡的电影网站| 国产欧美一区二区精品性色超碰 | 成人视屏免费看| 中文字幕不卡三区| 成人av在线资源网| 国产精品久久久久久久久图文区| 国产乱码精品1区2区3区| 久久精品男人天堂av| 国产精品一卡二| 国产婷婷色一区二区三区| 国产激情视频一区二区在线观看| 久久精品欧美一区二区三区麻豆| 国产精品影视在线观看| 国产精品美女久久久久久久久久久| 粉嫩av一区二区三区在线播放| 中文字幕国产一区| 在线视频欧美区| 免费不卡在线观看| 欧美精品一区二区在线观看| 国产一区二区三区美女| 中文字幕精品一区| 欧美视频一区二区三区在线观看| 亚洲小说春色综合另类电影| 欧美日韩不卡在线| 国产一区二区不卡老阿姨| 日韩一区中文字幕| 欧美日韩精品一区二区三区四区 | 99视频国产精品| 亚洲国产日韩一级| 日韩欧美成人激情| eeuss影院一区二区三区| 夜色激情一区二区| 精品久久久久久久一区二区蜜臀| 韩国成人福利片在线播放| 中文字幕中文字幕一区二区| 欧美日韩综合在线| 国产成人福利片| 日韩—二三区免费观看av| 国产午夜精品在线观看| 欧美色网一区二区| 国产91对白在线观看九色| 亚洲第一福利视频在线| 久久久久久久久伊人| 欧美亚洲禁片免费| 国产成人一区在线| 日韩经典一区二区| 亚洲私人黄色宅男| www日韩大片| 欧美日韩国产成人在线免费| 风间由美中文字幕在线看视频国产欧美| 亚洲综合精品久久| 国产日韩精品久久久| 欧美一区二区网站| 色久综合一二码| 国产精品一区二区三区四区 | 欧美精品一二三四| 91在线丨porny丨国产| 极品少妇xxxx偷拍精品少妇| 亚洲图片欧美色图| 成人欧美一区二区三区1314| 久久日韩精品一区二区五区| 精品视频一区 二区 三区| 成人久久久精品乱码一区二区三区| 午夜av一区二区三区| 一区二区三区加勒比av| 国产精品久久久久久亚洲毛片| 欧美成人video| 欧美大片顶级少妇| 欧美一级搡bbbb搡bbbb| 欧美日韩在线免费视频| 91久久精品网| 欧美亚洲国产一区二区三区va | 国产精品麻豆欧美日韩ww| 精品国产乱码久久久久久浪潮| 欧美一级二级在线观看| 91超碰这里只有精品国产| 欧美另类z0zxhd电影|