20.2.89. PMIx_Info_construct
PMIx_Info_construct — Initialize the contents of a pmix_info_t(5)
20.2.89.1. SYNOPSIS
#include <pmix.h>
void PMIx_Info_construct(pmix_info_t *ptr);
20.2.89.1.1. Python Syntax
No Python equivalent
20.2.89.2. INPUT PARAMETERS
ptr: Pointer to a pmix_info_t(5) struct
20.2.89.3. DESCRIPTION
The PMIx_Info_construct function initializes all fields of a
pmix_info_t structure that has been previously instantiated in memory.
20.2.89.4. RETURN VALUE
None
20.2.89.5. EXAMPLES
Construct a structure:
pmix_info_t info;
PMIx_Info_construct(&info);
See also