Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Really kill the process.
[simgrid.git] / src / mc / mc_unw.h
index 87d3fa9..6a6b861 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (c) 2015. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2015-2017. 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. */
@@ -7,7 +6,7 @@
 #ifndef SIMGRID_MC_UNW_H
 #define SIMGRID_MC_UNW_H
 
-/** \file
+/** @file
  *  Libunwind implementation for the model-checker
  *
  *  Libunwind provides an pluggable stack unwinding API: the way the current
  *  much here.
  */
 
-#include <sys/types.h>
-
-#include <xbt/base.h>
+#include "src/mc/mc_forward.hpp"
+#include "xbt/base.h"
 
 #include <libunwind.h>
-
-#include "src/mc/mc_forward.hpp"
+#include <stdio.h>
+#include <sys/types.h>
 
 namespace simgrid {
 namespace unw {
@@ -48,12 +46,13 @@ namespace mc {
 
 class UnwindContext {
   simgrid::mc::AddressSpace* addressSpace_ = nullptr;
-  simgrid::mc::Process*      process_ = nullptr;
-  unw_context_t              unwindContext_;
+  simgrid::mc::RemoteClient* process_      = nullptr;
+  unw_context_t unwindContext_;
+
 public:
-  UnwindContext() {}
+  UnwindContext() = default;
   ~UnwindContext() { clear(); }
-  void initialize(simgrid::mc::Process* process, unw_context_t* c);
+  void initialize(simgrid::mc::RemoteClient* process, unw_context_t* c);
   void clear();
   unw_cursor_t cursor();