LLVM OpenMP* Runtime Library
|
Functions | |
void | __kmpc_begin (ident_t *loc, kmp_int32 flags) |
void | __kmpc_end (ident_t *loc) |
These functions are for library initialization and shutdown.
void __kmpc_begin | ( | ident_t * | loc, |
kmp_int32 | flags | ||
) |
loc | in source location information |
flags | in 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 40 of file kmp_csupport.cpp.
void __kmpc_end | ( | ident_t * | loc | ) |
loc | source 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 62 of file kmp_csupport.cpp.