-
-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename set_errorhandler!
to set_errhandler!
#500
Comments
I've thought a bit more about this: I personally prefer the longer name. |
I am all for consistency and descriptiveness in naming things. Since consistency is broken anyways (it would have to be |
In C, all MPI constants, types, and function names that mention "error handler" use the term |
The MPI standard has a function
MPI_Comm_set_errhandler
that we (since Julia has overloading) would usually callMPI.set_errhandler!
. However, we deviate from "the usual" rules for translating MPI function names, and call itMPI.set_errorhandler!
instead.I think we should use the same name as in the MPI standard.
The text was updated successfully, but these errors were encountered: