function libshared_memory_add_memory_from_numa_node
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_from_numa_node( struct libshared_memory_state *ms, lfds711_pal_uint_t numa_node_id, 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.
lfds711_pal_uint_t numa_node_id
- The NUMA node ID of the memory pointer to by memory.
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 known, e.g.. memory allocated by numa_alloc_on_node.