X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e303bc683c874808621082e409ec13bcc1b17247..9197f939bdfb39f2c4746f47c16c5b9f630b12cc:/src/smpi/smpi_global.cpp diff --git a/src/smpi/smpi_global.cpp b/src/smpi/smpi_global.cpp index 25518210f0..05216bfce3 100644 --- a/src/smpi/smpi_global.cpp +++ b/src/smpi/smpi_global.cpp @@ -549,6 +549,7 @@ int smpi_main(const char* executable, int argc, char *argv[]) #if HAVE_SENDFILE sendfile(fdout, fdin, NULL, fdin_size); #else + XBT_WARN("Copy %d bytes into %s", static_cast(fdin_size), target_executable.c_str()); const int bufsize = 1024 * 1024 * 4; char buf[bufsize]; while (int got = read(fdin, buf, bufsize)) {