function libshared_memory_cleanup

From liblfds.org
Revision as of 19:53, 26 May 2016 by Admin (talk | contribs) (Created page with "{{DISPLAYTITLE:function libshared_memory_cleanup}} ==Source Files== └── test_and_benchmark └── libshared ├── inc │ └── libs...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Source Files

└── test_and_benchmark
    └── libshared
        ├── inc
        │   └── libshared
        │       └── libshared_memory.h
        └── src
            └── libshared_memory
                └── libshared_memory_cleanup.c

Opaque Structures

struct libshared_memory_state;

Prototype

void libshared_memory_cleanup( struct libshared_memory_state *ms,
                               void (*memory_cleanup_callback)(enum flag known_numa_node_flag,
                                                               void *store,
                                                               lfds710_pal_uint_t size) );

Parameters

struct libshared_memory_state *ms

A pointer to an initialized struct libshared_memory_state.

void (*memory_cleanup_callback)(enum flag known_numa_node_flag,

                               void *store,
                               lfds710_pal_uint_t size)
A callback function which is called with every memory allocation added to the memory state. This argument can be NULL.

Notes

NUMA memory APIs on deallocation do not need to know which NUMA node was used, and so the callback provides only a flag to indicate whether the given allocation was provided with libshared_memory_add_memory (LOWERED) or libshared_memory_add_memory_from_numa_node (RAISED).

Example

See Also