Changes to VT:
- general: - added missing entry in ChangeLog - vtunify[-mpi]: - fixed possibly uninitialized global token for the predefined Node and "All" process groups This commit was SVN r26147.
Этот коммит содержится в:
родитель
64f2ab4b8a
Коммит
61d2818831
@ -25,7 +25,10 @@
|
||||
rules appearing after a rank selection for disabling
|
||||
- fixed handling of 'errno' in LIBC[-I/O] wrappers for statically linked
|
||||
applications
|
||||
- fixed parsing of PAPI native events in VT_METRICS
|
||||
- vtunify[-mpi]:
|
||||
- fixed possibly uninitialized global token for the predefined
|
||||
Node and "All" process groups
|
||||
- fixed potential memory corruption during enqueuing recv.
|
||||
messages for p2p message matching
|
||||
- vtunify-mpi:
|
||||
|
@ -401,6 +401,8 @@ private:
|
||||
//
|
||||
struct CommS
|
||||
{
|
||||
CommS() : global_token( 0 ) {}
|
||||
|
||||
uint32_t global_token; // global comm. token
|
||||
std::set<uint32_t, ProcCmpS> members; // member process ids
|
||||
|
||||
@ -437,6 +439,8 @@ private:
|
||||
//
|
||||
struct GroupS
|
||||
{
|
||||
GroupS() : global_token( 0 ) {}
|
||||
|
||||
uint32_t global_token; // global process group token
|
||||
std::set<uint32_t, ProcCmpS> members; // member process ids
|
||||
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user