function libshared_memory_add_memory
Jump to navigation
Jump to search
Source Files
└── test_and_benchmark └── libshared ├── inc │ └── libshared │ └── libshared_memory.h └── src └── libshared_memory └── libshared_memory_add.c
Opaque Structures
struct libshared_memory_state;
Prototype
void libshared_memory_add_memory( struct libshared_memory_state *ms, void *memory, lfds711_pal_uint_t memory_size_in_bytes );
Parameters
struct libshared_memory_state *ms
- A pointer to an initialized struct libshared_memory_state.
void *memory
- A pointer to a user-allocated block of memory to add to the memory state.
lfds711_pal_uint_t memory_size_in_bytes
- The size in bytes of the memory pointed to by memory.
Notes
This function is used when adding memory for which the NUMA node is not known, e.g.. memory allocated by malloc.