Procházet zdrojové kódy

Merge pull request #13 from yuantailing/chen

correct 14 spelling mistakes
main
chyyuu před 9 roky
rodič
revize
868144970d
14 změnil soubory, kde provedl 14 přidání a 14 odebrání
  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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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.

Načítá se…
Zrušit
Uložit