Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to fix some compilation erros
[simgrid.git] / src / mc / ModelChecker.cpp
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <cassert>
8
9 #include "ModelChecker.hpp"
10 #include "PageStore.hpp"
11
12 ::simgrid::mc::ModelChecker* mc_model_checker = NULL;
13
14 namespace simgrid {
15 namespace mc {
16
17 ModelChecker::ModelChecker(pid_t pid, int socket) :
18   hostnames_(xbt_dict_new()),
19   page_store_(500),
20   process_(pid, socket),
21   parent_snapshot_(nullptr)
22 {
23 }
24
25 ModelChecker::~ModelChecker()
26 {
27   xbt_dict_free(&this->hostnames_);
28 }
29
30 const char* ModelChecker::get_host_name(const char* hostname)
31 {
32   // Lookup the host name in the dictionary (or create it):
33   xbt_dictelm_t elt = xbt_dict_get_elm_or_null(this->hostnames_, hostname);
34   if (!elt) {
35     xbt_dict_set(this->hostnames_, hostname, NULL, NULL);
36     elt = xbt_dict_get_elm_or_null(this->hostnames_, hostname);
37     assert(elt);
38   }
39   return elt->key;
40 }
41
42 }
43 }