Selaa lähdekoodia

Remove the addition space

main
ArchStacker 9 vuotta sitten
vanhempi
commit
87248a2704
12 muutettua tiedostoa jossa 12 lisäystä ja 12 poistoa
  1. +1
    -1
      labcodes/lab4/kern/process/proc.c
  2. +1
    -1
      labcodes/lab5/kern/process/proc.c
  3. +1
    -1
      labcodes/lab6/kern/process/proc.c
  4. +1
    -1
      labcodes/lab7/kern/process/proc.c
  5. +1
    -1
      labcodes/lab8/kern/process/proc.c
  6. +1
    -1
      labcodes_answer/lab4_result/kern/process/proc.c
  7. +1
    -1
      labcodes_answer/lab5_result/kern/process/proc.c
  8. +1
    -1
      labcodes_answer/lab6_result/kern/process/proc.c
  9. +1
    -1
      labcodes_answer/lab7_result/kern/process/proc.c
  10. +1
    -1
      labcodes_answer/lab8_result/kern/process/proc.c
  11. +1
    -1
      related_info/lab4/lab4-spoc-discuss/kern/process/proc.c
  12. +1
    -1
      related_info/lab5/lab5-spoc-discuss/kern/process/proc.c

+ 1
- 1
labcodes/lab4/kern/process/proc.c Näytä tiedosto

@ -283,7 +283,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
labcodes/lab5/kern/process/proc.c Näytä tiedosto

@ -382,7 +382,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
labcodes/lab6/kern/process/proc.c Näytä tiedosto

@ -392,7 +392,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
labcodes/lab7/kern/process/proc.c Näytä tiedosto

@ -392,7 +392,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
labcodes/lab8/kern/process/proc.c Näytä tiedosto

@ -440,7 +440,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
labcodes_answer/lab4_result/kern/process/proc.c Näytä tiedosto

@ -295,7 +295,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
labcodes_answer/lab5_result/kern/process/proc.c Näytä tiedosto

@ -390,7 +390,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
labcodes_answer/lab6_result/kern/process/proc.c Näytä tiedosto

@ -396,7 +396,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
labcodes_answer/lab7_result/kern/process/proc.c Näytä tiedosto

@ -402,7 +402,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
labcodes_answer/lab8_result/kern/process/proc.c Näytä tiedosto

@ -449,7 +449,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
related_info/lab4/lab4-spoc-discuss/kern/process/proc.c Näytä tiedosto

@ -266,7 +266,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

+ 1
- 1
related_info/lab5/lab5-spoc-discuss/kern/process/proc.c Näytä tiedosto

@ -390,7 +390,7 @@ do_fork(uint32_t clone_flags, uintptr_t stack, struct trapframe *tf) {
* setup the kernel entry point and stack of process
* hash_proc: add proc into proc hash_list
* get_pid: alloc a unique pid for process
* wakeup_proc: set proc->state = PROC_RUNNABLE
* wakeup_proc: set proc->state = PROC_RUNNABLE
* VARIABLES:
* proc_list: the process set's list
* nr_process: the number of process set

Ladataan…
Peruuta
Tallenna