Mass rename memory object variables.
Use shorthand: AddressSpace -> vmas MemoryObject -> vmmo The VM prefix makes these a little more distinguishable in code.
This commit is contained in:
parent
a8a4f8d9ab
commit
6c10c57bfa
8 changed files with 53 additions and 49 deletions
|
|
@ -8,7 +8,7 @@ struct ZProcessSpawnReq {
|
|||
|
||||
struct ZProcessSpawnResp {
|
||||
uint64_t proc_cap;
|
||||
uint64_t as_cap;
|
||||
uint64_t vmas_cap;
|
||||
};
|
||||
|
||||
struct ZThreadCreateReq {
|
||||
|
|
@ -27,9 +27,9 @@ struct ZThreadStartReq {
|
|||
};
|
||||
|
||||
struct ZAddressSpaceMapReq {
|
||||
uint64_t as_cap;
|
||||
uint64_t offset;
|
||||
uint64_t mem_cap;
|
||||
uint64_t vmas_cap;
|
||||
uint64_t vmas_offset;
|
||||
uint64_t vmmo_cap;
|
||||
};
|
||||
|
||||
struct ZAddressSpaceMapResp {
|
||||
|
|
@ -41,5 +41,5 @@ struct ZMemoryObjectCreateReq {
|
|||
};
|
||||
|
||||
struct ZMemoryObjectCreateResp {
|
||||
uint64_t mem_cap;
|
||||
uint64_t vmmo_cap;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue