Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d8d48c729a942db5824f7a1c6ec7e3308de83125
[simgrid.git] / src / surf / callbacks.cpp
1 /* Copyright (c) 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 <xbt/asserts.h>
8
9 #include "src/surf/callbacks.h"
10 #include "src/surf/surf_interface.hpp"
11 #include "src/surf/host_interface.hpp"
12
13 void surf_host_created_callback(void (*callback)(sg_host_t))
14 {
15   hostCreatedCallbacks.connect([callback](Host* host) {
16     const char* id = host->getName();
17     sg_host_t h = sg_host_by_name(id);
18     xbt_assert(h != NULL, "Host not found for name %s", id);
19     callback(h);
20   });
21 }