minor modifications for GCC 4.3.0 compatibility

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1239 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jboisson 2008-09-23 21:36:40 +00:00
commit 33f3b82974
14 changed files with 40 additions and 5 deletions

View file

@ -38,7 +38,7 @@
#define THREAD_H_
#include <vector>
#include <pthread.h>
/* A high-level thread */
class Thread

View file

@ -41,7 +41,7 @@
#include "../../core/peo_debug.h"
#include "node.h"
#define MPI_BUF_SIZE 1024*64
#define MPI_BUF_SIZE 1024*512
static char mpi_buf [MPI_BUF_SIZE];
@ -89,7 +89,7 @@ void cleanBuffers ()
void waitBuffers ()
{
printDebugMessage ("waiting the termination of the asynchronous operations to complete");
// printDebugMessage ("waiting the termination of the asynchronous operations to complete");
for (unsigned i = 0; i < act_req.size (); i ++)
{

View file

@ -37,6 +37,8 @@
#ifndef __mess_rmc_h
#define __mess_rmc_h
#include <string.h>
#include "../../core/messaging.h"
extern void initMessage ();

View file

@ -39,6 +39,7 @@
#include <map>
#include <string>
#include <cassert>
#include <stdlib.h>
#include "mess.h"

View file

@ -40,6 +40,7 @@
#include <string>
#include <vector>
#include <cassert>
#include <stdlib.h>
#include "node.h"
#include "../../core/runner.h"

View file

@ -38,6 +38,7 @@
#define __xml_parser_h
#include <string>
#include <string.h>
extern void openXMLDocument (const char * __filename);