diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-10-14 15:19:08 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-10-14 15:19:08 +0300 |
| commit | 0bd3518117ad29ffc91c7967068abc9948cc4885 (patch) | |
| tree | 5560d514e9880c582462da06048e83e21fc4c258 /include/apos/mem.h | |
| parent | 54df2c4c0a61c03cba268e45e0fd85bf2a7e564b (diff) | |
| download | kmi-0bd3518117ad29ffc91c7967068abc9948cc4885.tar.gz kmi-0bd3518117ad29ffc91c7967068abc9948cc4885.zip | |
remove references to cow
+ Skip cow for now, maybe implement later but try to keep things simple.
Diffstat (limited to 'include/apos/mem.h')
| -rw-r--r-- | include/apos/mem.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/apos/mem.h b/include/apos/mem.h index 512f1e7..0eed025 100644 --- a/include/apos/mem.h +++ b/include/apos/mem.h @@ -217,10 +217,8 @@ #define MR_SHARED (1 << 9) /** Owner of shared region. */ #define MR_OWNED (1 << 10) -/** Copy on write. */ -#define MR_COW (1 << 11) /** Don't free memory on clear. */ -#define MR_KEEP (1 << 12) +#define MR_KEEP (1 << 11) /** @} */ |
