-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.txt
29 lines (27 loc) · 1.17 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
///////////////////////////////////////////////////////////////////////////////
// PROGRAM 3 - Software Raid
// Title: README.txt
// Files: raidsim.c, disk.c, disk.h, disk-array.c, disk-array.h, simple-trace.txt, second-trace.txt,
//Makefile
// Semester: CS537 Spring 2013
//
// PAIR PROGRAMMERS
//
// Pair Partner: (Ted) Tianchu Huang [email protected]
// CS Login: Tianchu
// Lecturer's Name: Michael Swift
//
// Pair Partner: Tyson Williams [email protected]
// CS Login: twilliam
// Lecturer's Name: Michael Swift
//
// Pair Partner: Adam Thorson [email protected]
// CS Login: thorson
// Lecturer's Name: Michael Swift
//
//////////////////////////// 80 columns wide //////////////////////////////////
Flow of program: Go through main; jump to choose system (picks one of the 4 doRaid methods); once you
are within a given doRaid function, the rest of the executable code will run the trace file.
For RAID 0 and 10, all tests are passing. In regards to RAID 4 and 5, all recovered disks displayed
accurate readings when possible with the tests we exercised. Also, make note that Additive Parity was
implemented in both 4 and 5. There are no memory leaks nor corruption problems.