2022-11-04 09:35:42 -07:00

35 lines
914 B
C

/*
* @@name: error.1
* @@type: C
* @@operation: link
* @@expect: success
* @@version: omp_5.2
*/
#include <stdio.h>
#include <omp.h>
int main(){
#pragma omp metadirective \
when(implementation={vendor(gnu)}: nothing ) \
otherwise(error at(compilation) severity(fatal) \
message("GNU compiler required."))
if( omp_get_num_procs() < 3 ){
#pragma omp error at(execution) severity(fatal) \
message("3 or more procs required.")
}
#pragma omp parallel master
{
// Give notice about master deprecation at compile time and run time.
#pragma omp error at(compilation) severity(warning) \
message("Notice: master is deprecated.")
#pragma omp error at(execution) severity(warning) \
message("Notice: masked used next release.")
printf(" Hello from thread number 0.\n");
}
}