日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

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

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編程設計
  • 無相關信息
    合肥生活資訊

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

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

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

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        国产麻豆精品视频| 一区在线播放| 国产日产亚洲精品系列| 国产农村妇女毛片精品久久莱园子| 欧美高清视频在线播放| 国产精品免费观看视频| 国产九九视频一区二区三区| 国产精品九九久久久久久久| 欧美一区二区三区免费观看视频| 欧美高清视频在线观看| 欧美性理论片在线观看片免费| 亚洲片区在线| 香蕉国产精品偷在线观看不卡| 久久婷婷色综合| 亚洲国产毛片完整版| 国产精品theporn88| 国产亚洲一区二区三区| 国产午夜亚洲精品不卡| 极品尤物一区二区三区| 国产噜噜噜噜噜久久久久久久久| 欧美三区免费完整视频在线观看| 欧美日韩视频一区二区| 久久久亚洲成人| 亚洲最新视频在线播放| 久久精品国产综合精品| 欧美精品一区二| 国产精品萝li| 欧美精品黄色| 欧美日韩中文在线| 亚洲一区二区三区免费视频| 久久精品国产69国产精品亚洲| 亚洲中无吗在线| 99re热这里只有精品视频| 亚洲欧美日韩国产综合| 国产欧美精品一区二区三区介绍| 国产综合激情| 久久网站免费| 一色屋精品视频在线观看网站| 欧美日韩国内自拍| 国产精品日韩精品欧美在线| 一区二区三区四区五区精品| 在线亚洲美日韩| 欧美日韩免费观看一区二区三区| 一区二区三区视频免费在线观看| 快播亚洲色图| 国产亚洲一区二区三区在线播放| 先锋影音国产精品| 国产精品私拍pans大尺度在线| 国产精品免费aⅴ片在线观看| 欧美风情在线| 欧美精品高清视频| 老司机aⅴ在线精品导航| 一区二区三区成人| 一二三区精品福利视频| 亚洲精品一区在线观看香蕉| 国产亚洲欧美aaaa| 香蕉久久夜色精品| 毛片精品免费在线观看| 一区二区三区四区在线| 国产精品日韩电影| 国产精品女人网站| 国产亚洲在线观看| 国产一区二区三区久久| 欧美国产1区2区| 亚洲午夜小视频| 国产精品揄拍一区二区| 欧美视频免费看| 欧美成年人在线观看| 久久综合影视| 国产亚洲精品福利| 国内精品久久久久久影视8| 国内成+人亚洲| 欧美日韩国产不卡在线看| 欧美影院精品一区| 欧美精品成人91久久久久久久| 国产麻豆精品theporn| 亚洲最新中文字幕| 欧美日韩国产综合视频在线观看| 国产精品久线观看视频| 中日韩午夜理伦电影免费| 激情综合视频| 亚洲激情在线观看| 99热免费精品在线观看| 狠狠色综合一区二区| 欧美久久久久中文字幕| 韩国欧美国产1区| 香蕉成人伊视频在线观看| 亚洲一级一区| 欧美性猛交xxxx乱大交蜜桃| 亚洲图片欧美日产| 亚洲精品老司机| 在线免费一区三区| 国产精品三级久久久久久电影| 久久精品中文字幕一区二区三区| 国内精品伊人久久久久av影院| 欧美在线看片a免费观看| 久久久久久国产精品一区| 国产一区二区三区久久悠悠色av| 欧美va天堂va视频va在线| 亚洲日本va在线观看| 日韩一级大片| 久久在线免费观看| 国产精品理论片在线观看| 一本色道久久综合狠狠躁篇怎么玩| 久久久www成人免费无遮挡大片| 激情成人亚洲| 亚洲精品女av网站| 欧美ab在线视频| 夜夜夜久久久| 欧美午夜在线观看| 在线观看国产精品淫| 欧美暴力喷水在线| 久久久久久有精品国产| 99国产精品久久久久久久久久| 亚洲视频成人| 国产精品三级久久久久久电影| 亚洲欧美精品在线| 欧美午夜激情在线| 国产欧美一区二区三区在线老狼| 欧美高清视频在线| 亚洲免费小视频| 欧美三级视频| 国产精品毛片a∨一区二区三区|国| 欧美不卡一卡二卡免费版| 亚洲自拍偷拍麻豆| 亚洲欧洲日本一区二区三区| 樱桃成人精品视频在线播放| 欧美日韩精品一本二本三本| 亚洲伊人一本大道中文字幕| 亚洲一区二区三区精品在线| 亚洲激情视频| 麻豆九一精品爱看视频在线观看免费| 国产精品日韩精品欧美在线| 这里是久久伊人| 另类综合日韩欧美亚洲| 亚洲精品视频在线| 国产伦精品一区二区三区照片91| 狠狠色2019综合网| 欧美日韩国产成人高清视频| 欧美成人激情在线| 久久一区二区三区av| 亚洲综合视频在线| 欧美精品一区二区在线播放| 欧美亚洲第一页| 久久成人这里只有精品| 久久精品一区中文字幕| 精品动漫3d一区二区三区| 欧美在线视频导航| 国内精品久久久久久久97牛牛| 最新中文字幕一区二区三区| 国产一区二区三区久久| 久久亚洲美女| 欧美视频一区二区三区| 国产亚洲一级| 国产精品国产| 91久久香蕉国产日韩欧美9色| 狠狠色丁香久久婷婷综合_中| 亚洲视频在线播放| 欧美一区二视频在线免费观看| 国产精品久久久久久亚洲调教| 夜夜爽99久久国产综合精品女不卡| 国产精品亚洲第一区在线暖暖韩国| 欧美精品 国产精品| 老牛嫩草一区二区三区日本|