A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
loba.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add algorithm pstar (not implemented yet).
[loba.git]
/
communicator.cpp
diff --git
a/communicator.cpp
b/communicator.cpp
index 5abb543582c617a948258fc16845abafbf56cfaa..2df6d76d9a04531e725aa1f9fb5fce8c538b95a1 100644
(file)
--- a/
communicator.cpp
+++ b/
communicator.cpp
@@
-1,6
+1,5
@@
#include <algorithm>
#include <algorithm>
-#include <functional>
-#include <msg/msg.h>
+#include <simgrid/msg.h>
#include <xbt/log.h>
XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(comm);
#include <xbt/log.h>
XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(comm);
@@
-23,8
+22,7
@@
namespace {
communicator::communicator()
: host(static_cast<hostdata*>(MSG_host_get_data(MSG_host_self())))
{
communicator::communicator()
: host(static_cast<hostdata*>(MSG_host_get_data(MSG_host_self())))
{
- receiver_thread = new_msg_thread("receiver",
- std::bind(&communicator::receiver, this));
+ receiver_thread = new_msg_thread("receiver", [this]() { this->receiver(); });
receiver_thread->start();
}
receiver_thread->start();
}