Skip to content

Fix NVStore README file (changed APIs) #7164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion features/nvstore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ Each item is kept in an entry containing a header and data, where the header hol
- get: Get the value of an item, given key.
- set: Set the value of an item, given key and value.
- set_once: Like set, but allows only a one time setting of this item (and disables deleting of this item).
- set_alloc_key: Like set, but allocates a free key (from the non predefined keys).
- alloc_key: Allocates a free key (from the keys that are not predefined) to an owner (an owning feature).
- free_all_keys_by_owner: Free all allocated keys, given an owner.
- remove: Remove an item, given key.
- get_item_size: Get the item value size (in bytes).
- set_max_keys: Set maximal value of unique keys. Overriding the default of NVSTORE_MAX_KEYS. This affects RAM consumption,
Expand Down