diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-11-09 19:06:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 19:06:26 (GMT) |
commit | d93c6fae4313c497ca1383d1aef24203a29b5087 (patch) | |
tree | 3c91e02d3d64182a726eaf68fe8ce28e63ecf5d0 /bin/checkposix | |
parent | 18c438bdf0be8ad98f968bb77b327d7a3f17a3f5 (diff) | |
download | hdf5-d93c6fae4313c497ca1383d1aef24203a29b5087.zip hdf5-d93c6fae4313c497ca1383d1aef24203a29b5087.tar.gz hdf5-d93c6fae4313c497ca1383d1aef24203a29b5087.tar.bz2 |
Removes MPE instrumentation support. (#2245)
* Removes MPE instrumentation support.
The Autotools will no longer accept --with-mpe= and the logging commands
have been removed from the FUNC_ENTER macros. CMake has never supported
instrumenting for MPE.
* Committing clang-format changes
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
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_/; |