Просмотр исходного кода

correct 14 spelling mistakes

main
yuantailing 9 лет назад
Родитель
Сommit
36f12c6cb5
14 измененных файлов: 14 добавлений и 14 удалений
  1. +1
    -1
      labcodes/lab2/kern/mm/default_pmm.c
  2. +1
    -1
      labcodes/lab3/kern/mm/default_pmm.c
  3. +1
    -1
      labcodes/lab4/kern/mm/default_pmm.c
  4. +1
    -1
      labcodes/lab5/kern/mm/default_pmm.c
  5. +1
    -1
      labcodes/lab6/kern/mm/default_pmm.c
  6. +1
    -1
      labcodes/lab7/kern/mm/default_pmm.c
  7. +1
    -1
      labcodes/lab8/kern/mm/default_pmm.c
  8. +1
    -1
      labcodes_answer/lab2_result/kern/mm/default_pmm.c
  9. +1
    -1
      labcodes_answer/lab3_result/kern/mm/default_pmm.c
  10. +1
    -1
      labcodes_answer/lab4_result/kern/mm/default_pmm.c
  11. +1
    -1
      labcodes_answer/lab5_result/kern/mm/default_pmm.c
  12. +1
    -1
      labcodes_answer/lab6_result/kern/mm/default_pmm.c
  13. +1
    -1
      labcodes_answer/lab7_result/kern/mm/default_pmm.c
  14. +1
    -1
      labcodes_answer/lab8_result/kern/mm/default_pmm.c

+ 1
- 1
labcodes/lab2/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes/lab3/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes/lab4/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes/lab5/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes/lab6/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes/lab7/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes/lab8/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes_answer/lab2_result/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes_answer/lab3_result/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes_answer/lab4_result/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes_answer/lab5_result/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes_answer/lab6_result/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes_answer/lab7_result/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

+ 1
- 1
labcodes_answer/lab8_result/kern/mm/default_pmm.c Просмотреть файл

@ -7,7 +7,7 @@
on receiving a request for memory, scans along the list for the first block that is large enough to
satisfy the request. If the chosen block is significantly larger than that requested, then it is
usually split, and the remainder added to the list as another free block.
Please see Page 196~198, Section 8.2 of Yan Wei Ming's chinese book "Data Structure -- C programming language"
Please see Page 196~198, Section 8.2 of Yan Wei Min's chinese book "Data Structure -- C programming language"
*/
// LAB2 EXERCISE 1: YOUR CODE
// you should rewrite functions: default_init,default_init_memmap,default_alloc_pages, default_free_pages.

Загрузка…
Отмена
Сохранить