noxos (docs): set status to implemented for the syscalls nx_mmap and nx_munmap

This commit is contained in:
antifallobst 2023-04-20 18:55:35 +02:00
parent 470a9ce887
commit f3bd5cd0e7
1 changed files with 4 additions and 4 deletions

View File

@ -35,10 +35,10 @@ The following calls should be implemented to some degree in noxos 1.0.
**Note:** The _len_ argument of paths isn't used at the moment, rather than using _len_, _path_ needs to be Null-Terminated.
## Memory
| ID | Name | Description | Arg1 | Arg2 | Arg3 | Arg4 | Result | Status |
|--------|-----------|-------------------------------------------------------------------------------------------------------------------------------------------|------|------|-------|------|--------|--------|
| 0x0201 | nx_mmap | Maps _n_ 4KB pages to address _addr_. You can provide a bitmap of flags with the _flags_ argument. Which flags can be is described below. | addr | n | flags | | status | N/A |
| 0x0202 | nx_munmap | Unmaps _n_ 4KB pages at address _addr_. | addr | n | | | status | N/A |
| ID | Name | Description | Arg1 | Arg2 | Arg3 | Arg4 | Result | Status |
|--------|-------------|-------------------------------------------------------------------------------------------------------------------------------------------------|------|------|-------|------|--------|-------------|
| 0x0201 | `nx_mmap` | Maps _n_ 4KB pages to address _addr_. You can provide a bitmap of flags with the _flags_ argument. Which flags can be used, is described below. | addr | n | flags | | status | Implemented |
| 0x0202 | `nx_munmap` | Unmaps _n_ 4KB pages at address _addr_. | addr | n | | | status | Implemented |
## Processes
| ID | Name | Description | Arg1 | Arg2 | Arg3 | Arg4 | Result | Status |