LLVM OpenMP* Runtime Library
Functions
Startup and Shutdown

Functions

void __kmpc_begin (ident_t *loc, kmp_int32 flags)
 
void __kmpc_end (ident_t *loc)
 

Detailed Description

These functions are for library initialization and shutdown.

Function Documentation

◆ __kmpc_begin()

void __kmpc_begin ( ident_t loc,
kmp_int32  flags 
)
Parameters
locin source location information
flagsin for future use (currently ignored)

Initialize the runtime library. This call is optional; if it is not made then it will be implicitly called by attempts to use other library functions.

Definition at line 36 of file kmp_csupport.cpp.

◆ __kmpc_end()

void __kmpc_end ( ident_t loc)
Parameters
locsource location information

Shutdown the runtime library. This is also optional, and even if called will not do anything unless the KMP_IGNORE_MPPEND environment variable is set to zero.

Definition at line 58 of file kmp_csupport.cpp.