c5ebf49f41
- added ompi_list_splice and ompi_list_join, which are multi-list manipulation functions similar to the splice functions in the STL list interface - added ompi_list_is_empty() for O(1) testing of for an empty list - added note that sometime in the future, ompi_list_get_size() may change to O(N) complexity. DID NOT CHANGE THE FUNCTION IN ANY WAY. If you are writing new code that needs to check for an empty list, please use ompi_list_is_empty() rather than ompi_list_get_size() as is_empty() will always be an O(1) operation (I can't see how you could make it impossible to make it O(1), so this seems like a safe claim). This commit was SVN r2186.