国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

EEE6207代做、代寫C++程序設計
EEE6207代做、代寫C++程序設計

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



EEE6207 Coursework Assignment AY2024-2025

You will write and test a small C program that implements a model of a number of independent Producer and Consumer entities that fill and drain a FIFO queue.  C models are often used to emulate the behaviours of various hardware, software and distributed computing systems, including the operating systems themselves. Examples include determining how big a buffer should be sized so it doesn’t cause stalling and underutilisation in a new hardware microarchitecture or designing a new scheduling or i/o strategy within user or operating system software.

 We won't be doing any analysis on the model we write here in a way a microarchitect or operating system architect would. Still, this sort of exercise, which includes an element of random traffic modelling, is definitely something you might see used to help size a system or even determine how big a run queue in an operating system or web server implementation might be.

The coursework will utilise concepts of multiprogramming and synchronization that have been covered in lectures and notes and draw on practical programming examples primarily from the labs on processes, threads and synchronization.

Model Specification

Implement a C-code model that emulates a system with n Producers and m Consumers which interacting through a shared queue 

Each Producer process (Pn) should generate a stream of random integers, writing them into a shared queue. It should then wait for a random number of seconds (up to some specified maximum value) before attempting its next write.
Each entry into the queue should have a priority (low, normal, high} assigned to it
Each Consumer process (Cn) should read an item from the shared queue if one is available and display it to the standard output. It should then wait for a random number of seconds (up to some specific maximum value) before attempting its next read. 
The queue should be implemented as a first in, first out, FIFO, data structure. 
If there is more than one item in the queue a high priority entry should be read before any normal or low priority entries
A Consumer Process must not read from an empty queue.
A Producer Process must not write to a full queue.

To avoid the model from consuming unnecessary resources on the computing platform on which it will be run, your model must include a mechanism to stop its execution once a specified Timeout Value (in seconds) has been reached.

Run time behaviour of the model should be controlled through a set of  command line arguments specifying the following parameters:

Number of Producers (between 1 and 4)
Number of Consumers (between 1 and 4)
Maximum entries in the queue (between 1 and 20)
Timeout Value in seconds

The following default parameter values should be built into the model. These should be easily identifiable (using appropriate comments and code structures such as include files) such that they can be configured  through recompilation of the model source code.

Maximum wait period between Producer writes 4 seconds
The maximum wait period between Consumer reads 4 seconds
Maximum number of Producers: 5
Maximum Number of Consumers 4
Range of Random Number generated by Producer 0 to 9

Your model should display an appropriate level of user-visible information while it is executing and a concise, readable summary of the model run itself. This must include the following information.

Run time Command line parameters.
Compiled model parameters
Time  & date of the execution run
Current user name & hostname
Indication of the current state of Producers, Consumers and the Queue

Comments & Code Structure

Please make sure you comment your code well – readability is a part of the assessment criteria. Comments make your code readable both to yourself and others. As noted, you should especially make it clear where compile-time options that control model behaviour are identified and consider the use of an appropriate code structure that provides modularity. Hint: A random number needs to be generated as data in the Producer process, and as a variable random wait in both the Producer and Consumer processes, one function will suffice.

Error Handling

We have emphasised the need to ensure the code handles error conditions, for example, those returned from system calls, well. What are you going to tell the user if a function or system call you use does not return the expected value? 

Model Verbosity

Your model should output an appropriate level of information to the user as it is running so she can track progress. It is up to you, but a suggestion would be to log when a Producer writes to the queue, including which producer it is and what it writes. This should, of course, include when a consumer writes to the standard output. Summarising the command line parameters for the model run is required.

Debugging

If your code is ‘working’ it should produce expected outcomes. How will you or a user debug a problem? You should include additional detailed instrumentation in your code to provide information about what is happening and a mechanism to turn this on or off – this could be a compile time option or a run time argument, your choice. The default behavior however should be off  - see the comment about Model Verbosity above.

Tidying up
Before you program exits it should exhibit good behaviour and clean up after itself. If for example it has created thread resources or synchronization objects it should cleanly terminate or relase these,  returning the associated memory resources to the operating system.


Assessment Criteria

Your coursework should be submitted no later than 5pm on Friday February 7th (this is the last day of Semester 1). This assignment is worth 25% of the total module mark and is a must pass element.

You will submit a zipfile (not a .rar or tarfile) bundle to a blackboard assignment. This contains the following sections. You will be provided with the exact details of how to do this through the assignment portal 

a)File(s) containing your (appropriately commented) c code that implements the specified model functionality, this should include error handling and instrumentation.
b)A short report describing your code structure, key features of your model implementation and commentary on your two output run logs. {Max 200 words}
c)Two separate run logfiles that use different command line parameters demonstrating the functional execution of your code 

Your submitted c-code will be

Run through MOSS to check the code for similarity (plagiarism check). (https://theory.stanford.edu/~aiken/moss/)
Recompiled and re-run to check it works consistently with your log files and with a separate run using a different parameter set
    
Marking scheme – Must pass threshold for MSc module is 50%

C code and associated report 65%
Run logs and Code rerun 45%


Hints

This assignment will almost certainly require you to search to identify some specific programming constructs that you might not have used before or encountered in the practical lab exercises. It uses the foundational concepts of threads and synchronisation mechanisms that you have learned in those lab exercises, including mutex and semaphores, and the principles outlined in the lectures and notes.

The queue in your model should be safely and efficiently controlled using appropriate synchronization mechanisms. You  could, for example, include mutexs and or semaphores.

Generating a logfile: You can pipe the output printf’d to the std_out terminal window into a file using the > operator in the shell. For example ./a.out > logfile will redirect the stdout into the file logfile

Generating user id and hostname can be accomplished using the getpwuid(getuid()) and gethostname() functions please put these in it identifies the runs as yours.

If (MY_PARAMETER) {
// do something
}
Is a simple way to insert conditional instrumentation code you only want to happen when you require the additional messages to be output.

Approach

You should consider approaching this assignment in a modular fashion. Break the problem down. write and test component functions as small independent chunks before integrating them together. For example, the random function mentioned earlier can be independently checked, as could, for example, the code to create a set of threads that would model independent consumers or producers or that which parses and displays the run time command line arguments. 

It is entirely possible that there will be more error handling and optional debugging/ instrumentation lines of code and comments than there are functional lines of code

The number of lines of code you end up with obviously depends a little on style but a couple of fully commented – fully instrumented model implementations are in the range of 250-350 lines of code quite a few of these are things like #includes #defines etc

You will find examples of almost all of the building blocks need to complete this assignment in the practical class notes.

If you are unsure about any aspect of the assignment please reach out.

We will run additional drop in sessions for the remaining weeks of the semester

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

掃一掃在手機打開當前頁
  • 上一篇:點點借款全國客服電話-點點借款24小時服務熱線電話
  • 下一篇:INT5051代做、代寫Python編程設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品av网站| 国产成人精品视频在线| 欧美日韩国产精品激情在线播放| 日日噜噜噜噜夜夜爽亚洲精品| 亚洲中文字幕无码一区二区三区| 伊人久久99| 日日噜噜夜夜狠狠久久丁香五月| 亚洲精品天堂成人片av在线播放| 亚洲一区二区三| 欧美一乱一性一交一视频| 欧美中文在线免费| 国产在线高清精品| 国产精品一区二区a| 91精品国产自产在线| 久久艹国产精品| 国产精品第2页| 亚洲在线视频福利| 青青青免费在线| 国产一区视频免费观看| 99精品国产高清一区二区| 久久av免费观看| 国产美女91呻吟求| 国产精品一二三在线观看| 国产一级不卡毛片| 经典三级在线视频| 成人免费网视频| 国产成人精品av| 久久深夜福利免费观看| 毛片精品免费在线观看| 亚洲熟妇无码另类久久久| 日韩av大片在线| 欧美日韩一区二区视频在线 | 国产精品久久久久av| 欧美精品久久久久久久久| 伊人天天久久大香线蕉av色| 天堂资源在线亚洲视频| 久久99久久久久久久噜噜| 中文字幕一区二区三区四区五区六区| 日韩av影视| 国产日韩欧美综合| 久久精品视频91| 在线一区亚洲| 激情小说综合网| 91福利视频在线观看| 国产精品久久久久久久久久 | 一女被多男玩喷潮视频| 日韩精品―中文字幕| 国产午夜大地久久| 久久久999视频| 九九精品在线播放| 欧美在线视频观看免费网站| 成人欧美一区二区| 国产精品视频导航| 欧美激情网友自拍| 欧美在线视频一区| 欧美亚洲国产视频| 久久精品国产一区二区三区日韩| 欧美激情二区三区| 中文字幕日韩一区二区三区不卡| 日韩一区不卡| 日韩免费视频在线观看| 91精品国产精品| 中文网丁香综合网| 欧美 日韩 国产精品| 国产欧美久久久久久| 蜜桃av噜噜一区二区三区| 7777免费精品视频| 欧美激情视频一区二区| 蜜臀精品一区二区| 精品国内自产拍在线观看| 日韩aⅴ视频一区二区三区| 成人黄色中文字幕| 久久久久久12| 国产欧美日韩91| 国产精品成人aaaaa网站| 偷拍盗摄高潮叫床对白清晰| 高清在线观看免费| 中文字幕一区二区三区乱码| 国产欧美精品一区二区| 久久五月情影视| 黄色www网站| 国产精品成人播放| 日本欧美精品在线| 国产精品69久久久久| 亚洲在线视频福利| 91精品国产高清久久久久久91 | 一区二区三区观看| 国产精品一区电影| 一级特黄妇女高潮| 99视频免费观看蜜桃视频| 国产99视频精品免视看7| 欧美第一黄网| 国产精品偷伦免费视频观看的| 日本欧美中文字幕| 国产精品高潮呻吟视频| 久久久国内精品| 分分操这里只有精品| 蜜桃精品久久久久久久免费影院| 日韩女优人人人人射在线视频| 亚洲欧洲一区二区| 欧美人成在线视频| 日韩在线免费高清视频| 91精品国产99久久久久久红楼| 国产中文字幕乱人伦在线观看 | 国产乱码精品一区二区三区中文| 欧美日韩视频在线一区二区观看视频| 午夜精品免费视频| 尤物国产精品| 一区二区三区四区不卡| 精品中文字幕在线| 久久伊人91精品综合网站| 久久久精品亚洲| 久久96国产精品久久99软件| 久久久亚洲国产精品| 91久久精品日日躁夜夜躁国产| 国产中文字幕91| 国产在线视频欧美| 免费亚洲一区二区| 狠狠精品干练久久久无码中文字幕| 日韩国产欧美一区| 青青在线视频观看| 欧美亚洲日本网站| 欧美亚洲在线视频| 欧美精品一区在线发布| 欧美区高清在线| 欧美高清性xxxxhd| 免费久久久久久| 国产中文日韩欧美| 国产精品一级久久久| 99国内精品久久久久久久软件| 国产肉体ⅹxxx137大胆| 国产日韩欧美在线看| 国产精品亚发布| 99久久99久久精品国产片| 91久久在线视频| 久久免费视频观看| 九色自拍视频在线观看| 色妞一区二区三区| 国产精品三级在线| 国产精品久久久久久久久久久久久| 久久艳片www.17c.com| 真实国产乱子伦对白视频| 亚洲淫片在线视频| 日本午夜精品一区二区三区| 欧美在线视频一区二区三区| 欧洲日本亚洲国产区| 国语自产精品视频在线看一大j8| 国产在线拍偷自揄拍精品| 国产色综合天天综合网| 97色在线播放视频| 久草资源站在线观看| 国产精品日韩在线播放| 欧美成年人网站| 亚洲女人毛片| 欧美专区第一页| 国产日韩欧美精品| 久久婷婷人人澡人人喊人人爽| 久久久久久国产三级电影| 国产精品视频区1| 国产99久久精品一区二区永久免费| 欧美精品久久一区二区| 日日碰狠狠丁香久燥| 欧美性猛交久久久乱大交小说| 国产一区二区在线免费| 91av在线播放| 久久久精品免费视频| 九九热精品视频| 日韩啊v在线| 国产一区二区视频在线免费观看| 99国产盗摄| 国产精品我不卡| 亚洲一区二区三区午夜| 欧日韩一区二区三区| 国产精品一区二区在线观看| 国产成人黄色av| 国产精品久久久久久久久久尿 | 成人羞羞国产免费网站| 九九九九免费视频| 久久亚洲国产精品| 日本一区不卡| 国产视频一区二区三区四区| 国产成人短视频| 一区二区成人国产精品| 精品欧美一区二区三区久久久| av无码久久久久久不卡网站| 日韩亚洲一区二区| 在线观看日韩羞羞视频| 日韩av大全| 成人一区二区在线| 国产精品久久久影院| 亚洲.欧美.日本.国产综合在线| 欧美极品视频一区二区三区| 7777精品久久久大香线蕉小说| 国产精品久久久久久久久免费| 亚洲一区二区三区香蕉| 欧美h视频在线| 久久精品国产第一区二区三区最新章节 | 亚洲精品一区二区三区樱花| 精品日本一区二区三区在线观看 | 亚洲精品一区二区三|