diff options
Diffstat (limited to 'bin/checkposix')
-rwxr-xr-x | bin/checkposix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/checkposix b/bin/checkposix index 52aee8b..ee12d44 100755 --- a/bin/checkposix +++ b/bin/checkposix @@ -143,7 +143,7 @@ foreach $arg (@ARGV) { next if $name =~ /^(_beginthread|(Initialize|Enter|Leave)CriticalSection|TlsAlloc)$/; # These are MPI function calls. Ignore them. - next if $name =~ /^(MPI_|MPE_)/; + next if $name =~ /^(MPI_)/; # These are POSIX threads function calls. Ignore them. next if $name =~ /^pthread_/; |