1
1
- 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.
Этот коммит содержится в:
Matthias Jurenz 2012-03-15 10:58:12 +00:00
родитель 64f2ab4b8a
Коммит 61d2818831
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -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