-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrj3README
28 lines (28 loc) · 1.03 KB
/
Prj3README
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
.
├── Makefile
├── Prj3README
├── step1
│ ├── common.h Some defines
│ ├── disk.c Disk-storage system
│ ├── log.h Log functions
│ └── Makefile
├── step2
│ ├── bio.c Block input/output
│ ├── bio.h Block input/output
│ ├── common.h Some defines
│ ├── fs.c File system
│ ├── log.h Log functions
│ └── Makefile
└── step3
├── bio.c Block input/output (client)
├── bio.h Block input/output
├── client.c Client functions
├── client.h Client functions
├── clientmain.c User client (client)
├── common.h Some defines
├── disk.c Disk-storage system (server)
├── fs.c File system (server, client)
├── log.h Log functions
├── Makefile
├── server.c Server functions
└── server.h Server functions