HOME
| OPENMP API Specification: Version 5.1 November 2020

3.12.6  omp_get_interop_type_desc

Summary The omp_get_interop_type_desc routine retrieves a description of the type of a property associated with an omp_interop_t object.

Format  

 
const char* omp_get_interop_type_desc(const omp_interop_t interop, 
                                      omp_interop_property_t property_id);  

Effect The omp_get_interop_type_desc routine returns a C string that describes the type of the property identified by property_id in human-readable form. That may contain a valid C type declaration possibly followed by a description or name of the type.

If interop has the value omp_interop_none, NULL is returned.

If the property_id is smaller than omp_ipr_first or not smaller than omp_get_num_interop_properties(interop), NULL is returned.

Restrictions Restrictions to the omp_get_interop_type_desc routine are as follows:

Cross References