1
1
- otfprofile[-mpi]:
		- added missing header includes for WEXITSTATUS

This commit was SVN r25637.
Этот коммит содержится в:
Matthias Jurenz 2011-12-14 08:20:26 +00:00
родитель efd8106d0a
Коммит 58eb61bc46
5 изменённых файлов: 13 добавлений и 3 удалений

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

@ -1,4 +1,6 @@
5.12.1openmpi
- updated version of internal OTF to 1.10.1openmpi
(see extlib/otf/ChangeLog)
- fixed build issues on MacOS using GCC v4.2
- fixed a bug in the MPI wrapper functions MPI_Gatherv and MPI_Scatterv
which occurred due to illegal access to insignificant parameters on

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

@ -1,3 +1,9 @@
1.10.1openmpi
- fixed build issues in otfprofile[-mpi]:
- added missing header includes for WEXITSTATUS
- moved 'using namespace std' under the header includes to solve
compile error with PGI compiler
1.10openmpi
- added process substitute record
- added process group attribute 'OTF_ATTR_IsCommunicator'

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

@ -7,7 +7,7 @@
major=1
minor=10
sub=0
sub=1
# string is used for alpha, beta, or release tags. If it is non-empty, it will
# be appended to the version number.
@ -48,5 +48,5 @@ string=openmpi
# release, age must be incremented. Otherwise, reset age
# to '0'.
library=4:0:3
library=4:1:3

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

@ -18,7 +18,7 @@
#define OTF_VERSION_MAJOR 1
#define OTF_VERSION_MINOR 10
#define OTF_VERSION_SUB 0
#define OTF_VERSION_SUB 1
#define OTF_VERSION_STRING "openmpi"
/**

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

@ -10,6 +10,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "OTF_Platform.h"