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