From 0e4b1ccbbce41e237bdf8a43037e21a1cdac314d Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Thu, 15 Mar 2018 15:17:24 +0100 Subject: [PATCH 1/1] Slightly move debug message. --- src/smpi/internals/smpi_memory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/smpi/internals/smpi_memory.cpp b/src/smpi/internals/smpi_memory.cpp index a6ca132808..461eab8432 100644 --- a/src/smpi/internals/smpi_memory.cpp +++ b/src/smpi/internals/smpi_memory.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -117,9 +117,9 @@ void smpi_really_switch_data_segment(int dest) #if HAVE_PRIVATIZATION // FIXME, cross-process support (mmap across process when necessary) + XBT_DEBUG("Switching data frame to the one of process %d", dest); simgrid::smpi::Process* process = smpi_process_remote(simgrid::s4u::Actor::byPid(dest)); int current = process->privatized_region()->file_descriptor; - XBT_DEBUG("Switching data frame to the one of process %d", dest); void* tmp = mmap(TOPAGE(smpi_data_exe_start), smpi_data_exe_size, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_SHARED, current, 0); if (tmp != TOPAGE(smpi_data_exe_start)) -- 2.20.1