Pārlūkot izejas kodu

correct 14 spelling mistakes

main
yuantailing pirms 9 gadiem
vecāks
revīzija
36f12c6cb5
14 mainītis faili ar 14 papildinājumiem un 14 dzēšanām
  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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

@ -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 Parādīt failu

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

Notiek ielāde…
Atcelt
Saglabāt