HOME
| OPENMP API Specification: Version 5.0 November 2018

4.4.1  Tool Initialization and Finalization

SummaryA tool’s implementation of ompt_start_tool returns a pointer to an ompt_start_tool_result_t structure, which contains pointers to the tool’s initialization and finalization callbacks as well as an ompt_data_t object for use by the tool.

Format

SVG-Viewer needed.

 

 
typedef struct ompt_start_tool_result_t { 
  ompt_initialize_t initialize; 
  ompt_finalize_t finalize; 
  ompt_data_t tool_data; 
} ompt_start_tool_result_t;  

SVG-Viewer needed.

RestrictionsThe ompt_start_tool_result_t type has the following restriction:

Cross References