mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 08:22:11 +01:00
20 lines
338 B
C
20 lines
338 B
C
/*
|
|
* @@name: display_env.1
|
|
* @@type: C
|
|
* @@operation: link
|
|
* @@expect: success
|
|
* @@version: omp_5.1
|
|
*/
|
|
#include <omp.h>
|
|
|
|
//implementers: customize debug routines for app debugging
|
|
int debug(){ return 1; }
|
|
int debug_omp_verbose(){ return 0; }
|
|
|
|
int main()
|
|
{
|
|
if( debug() ) omp_display_env( debug_omp_verbose() );
|
|
// ...
|
|
return 0;
|
|
}
|