pmem2_map_get_store_granularity - Man Page

reads effective mapping granularity

Synopsis

#include <libpmem2.h>

enum pmem2_granularity {
    PMEM2_GRANULARITY_BYTE,
    PMEM2_GRANULARITY_CACHE_LINE,
    PMEM2_GRANULARITY_PAGE,
};
enum pmem2_granularity pmem2_map_get_store_granularity(struct pmem2_map *map);

Description

The pmem2_map_get_store_granularity() function reads granularity of the created mapping. The map parameter points to the structure describing mapping created using the pmem2_map_new(3) function. Concept of the granularity is described in libpmem2(7).

Return Value

The pmem2_map_get_store_granularity() function returns a granularity of the mapped area.

See Also

pmem2_map_new(3), libpmem2(7) and <https://pmem.io>

Referenced By

libpmem2(7).

2024-01-25 PMDK - PMDK Programmer's Manual