From 7f355ba3434bdedb36f438c04d546dc298c2449d Mon Sep 17 00:00:00 2001 From: Mark Olesen Date: Fri, 26 Apr 2024 10:17:43 +0200 Subject: [PATCH] STYLE: communication name "buffered" instead of "blocking" - "buffered" corresponds to MPI_Bsend (buffered send), whereas the old name "blocking" is misleading since the regular MPI_Send also blocks until completion (ie, buffer can be reused). ENH: IPstream::read() returns std::streamsize instead of label (#3152) - previously returned a 'label' but std::streamsize is consistent with the input parameter and will help with later adjustments. - use