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:
Drew Galbraith 2023-06-07 00:30:26 -07:00
parent a8a4f8d9ab
commit 6c10c57bfa
8 changed files with 53 additions and 49 deletions

View file

@ -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;
};