X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/90ae0c20da41dd193a8a0672588a2ded4717e149..13354872d688eec2ed531e547c4f0c83d588c18b:/src/mc/ModelChecker.cpp diff --git a/src/mc/ModelChecker.cpp b/src/mc/ModelChecker.cpp index df403c3412..8f0728ffc1 100644 --- a/src/mc/ModelChecker.cpp +++ b/src/mc/ModelChecker.cpp @@ -266,7 +266,7 @@ void ModelChecker::handle_waitpid() // From PTRACE_O_TRACEEXIT: #ifdef __linux__ if (status>>8 == (SIGTRAP | (PTRACE_EVENT_EXIT<<8))) { - int ptrace_res = ptrace(PTRACE_GETEVENTMSG, remote_process_->pid(), 0, &status); + long ptrace_res = ptrace(PTRACE_GETEVENTMSG, remote_process_->pid(), 0, &status); xbt_assert(ptrace_res != -1, "Could not get exit status"); if (WIFSIGNALED(status)) { MC_report_crash(status);