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
change in fair strategy
[loba.git]
/
deployment.cpp
diff --git
a/deployment.cpp
b/deployment.cpp
index 43505db780c6b35e22f8aa3ccba5170fd285441a..58260144b737a48fad7f0f80fa3add1717e665c1 100644
(file)
--- a/
deployment.cpp
+++ b/
deployment.cpp
@@
-1,14
+1,15
@@
-#include "deployment.h"
-
#include <iomanip>
#include <sstream>
#include <msg/msg.h>
#include <xbt/dynar.h>
#include <xbt/log.h>
#include <iomanip>
#include <sstream>
#include <msg/msg.h>
#include <xbt/dynar.h>
#include <xbt/log.h>
+
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(depl);
+
#include "hostdata.h"
#include "options.h"
#include "hostdata.h"
#include "options.h"
-XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(depl);
+#include "deployment.h"
void MY_launch_application()
{
void MY_launch_application()
{
@@
-43,7
+44,6
@@
void deployment_generator::set_link(int host1, int host2)
void deployment_generator::deploy()
{
void deployment_generator::deploy()
{
- const char* func = "simulation_main";
xbt_dynar_t args = xbt_dynar_new(sizeof(const char*), NULL);
for (unsigned i = 0 ; i < hosts.size() ; ++i) {
const char* hostname = hostdata::at(i).get_name();
xbt_dynar_t args = xbt_dynar_new(sizeof(const char*), NULL);
for (unsigned i = 0 ; i < hosts.size() ; ++i) {
const char* hostname = hostdata::at(i).get_name();
@@
-58,7
+58,7
@@
void deployment_generator::deploy()
DEBUG2("%s/neighbor -> \"%s\"", hostname, neighbor_name);
xbt_dynar_push_as(args, const char*, neighbor_name);
}
DEBUG2("%s/neighbor -> \"%s\"", hostname, neighbor_name);
xbt_dynar_push_as(args, const char*, neighbor_name);
}
- MSG_set_function(hostname,
func
, args);
+ MSG_set_function(hostname,
"loba"
, args);
xbt_dynar_reset(args);
}
xbt_dynar_free(&args);
xbt_dynar_reset(args);
}
xbt_dynar_free(&args);