Skip to content

Commit f6c2448

Browse files
authored
Merge pull request #45 from sector-f/master
Fixed capitalization of syscalls
2 parents f028305 + 769c46a commit f6c2448

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3405,13 +3405,13 @@ Useful resources:
34053405

34063406
There are some system calls for process management. These are as follows:
34073407

3408-
- `Fork()`: it is used to create a new process
3409-
- `Exec()`: it is used to execute a new process
3410-
- `Wait()`: it is used to make the process to wait
3411-
- `Exit()`: it is used to exit or terminate the process
3412-
- `Getpid()`: it is used to find the unique process ID
3413-
- `Getppid()`: it is used to check the parent process ID
3414-
- `Nice()`: it is used to bias the currently running process property
3408+
- `fork()`: it is used to create a new process
3409+
- `exec()`: it is used to execute a new process
3410+
- `wait()`: it is used to make the process to wait
3411+
- `exit()`: it is used to exit or terminate the process
3412+
- `getpid()`: it is used to find the unique process ID
3413+
- `getppid()`: it is used to check the parent process ID
3414+
- `nice()`: it is used to bias the currently running process property
34153415

34163416
Useful resources:
34173417

0 commit comments

Comments
 (0)