diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-01-13 15:38:55 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-01-13 15:38:55 +0200 |
| commit | 2f7742acbeace74f09c8d7bb04cf127a84778712 (patch) | |
| tree | c83da442f3a47f12aa1726d797da06b2495fc09a /include/apos | |
| parent | acc26f85f32c68a51e5cc7b613cd0ea0b0630505 (diff) | |
| download | kmi-2f7742acbeace74f09c8d7bb04cf127a84778712.tar.gz kmi-2f7742acbeace74f09c8d7bb04cf127a84778712.zip | |
O(1) memory region node allocation
Diffstat (limited to 'include/apos')
| -rw-r--r-- | include/apos/mem_regions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apos/mem_regions.h b/include/apos/mem_regions.h index af6dc52..a843141 100644 --- a/include/apos/mem_regions.h +++ b/include/apos/mem_regions.h @@ -20,7 +20,7 @@ struct mem_region { struct mem_region *next; struct mem_region *prev; - char flags; + vmflags_t flags; vm_t end; vm_t start; |
