diff options
Diffstat (limited to 'pkmem-types.h')
| -rw-r--r-- | pkmem-types.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkmem-types.h b/pkmem-types.h index 7f7a2ac..2bf7752 100644 --- a/pkmem-types.h +++ b/pkmem-types.h @@ -54,6 +54,12 @@ pk_handle_validate_constexpr() struct pk_membucket; +enum PK_MEMBUCKET_FLAGS : uint64_t { + PK_MEMBUCKET_FLAG_NONE = (0), + PK_MEMBUCKET_FLAG_TRANSIENT = (1 << 01l), + PK_MEMBUCKET_FLAG_ALL = (0xFFFFFFFFFFFFFFFF), +}; + #endif /* PK_MEM_TYPES_H */ #ifdef PK_IMPL_MEM_TYPES |
