diff options
Diffstat (limited to 'bin/checkposix')
-rwxr-xr-x | bin/checkposix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/checkposix b/bin/checkposix index b01d323..3dbfda5 100755 --- a/bin/checkposix +++ b/bin/checkposix @@ -55,11 +55,18 @@ while (<>) { next if $name =~ /^FUNC_(ENTER|LEAVE)(_INIT)?$/; next if $name =~ /^U?INT(8|16|32|64)(ENCODE|DECODE)$/; next if $name =~ /^(MIN3?|MAX3?|NELMTS|BOUND|CONSTR)$/; + next if $name =~ /^IS_H5FD_MPIO$/; next if $name =~ /^addr_defined$/; # These functions/macros are exempt. next if $name =~ /^(assert|main|[fs]?printf|va_(start|arg|end))$/; + # These are MPI function calls. Ignore them. + next if $name =~ /^MPI_/; + + # These are POSIX threads function calls. Ignore them. + next if $name =~ /^pthread_/; + print "$ARGV:$.: $name\n"; } |