소스 검색

correct 14 spelling mistakes

main
yuantailing 9 년 전
부모
커밋
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.

불러오는 중...
취소
저장