X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dadb0fce9eec339e90886793346c123625f1deb4..978ba263685f9f76f4721930decccebbbf776816:/include/simgrid/host.h diff --git a/include/simgrid/host.h b/include/simgrid/host.h index d65ace35fb..bdb3d8992f 100644 --- a/include/simgrid/host.h +++ b/include/simgrid/host.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2019. 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. */ @@ -101,7 +101,7 @@ XBT_PUBLIC void sg_host_set_pstate(sg_host_t host, int pstate); XBT_PUBLIC void sg_host_turn_on(sg_host_t host); XBT_PUBLIC void sg_host_turn_off(sg_host_t host); XBT_PUBLIC int sg_host_is_on(sg_host_t host); -XBT_PUBLIC int sg_host_is_off(sg_host_t host); +XBT_ATTRIB_DEPRECATED_v325("Please use !sg_host_is_on()") XBT_PUBLIC int sg_host_is_off(sg_host_t host); /** @ingroup m_host_management * @brief Returns a xbt_dict_t consisting of the list of properties assigned to this host @@ -132,6 +132,8 @@ XBT_PUBLIC void sg_host_set_property_value(sg_host_t host, const char* name, con XBT_PUBLIC void sg_host_route(sg_host_t from, sg_host_t to, xbt_dynar_t links); XBT_PUBLIC double sg_host_route_latency(sg_host_t from, sg_host_t to); XBT_PUBLIC double sg_host_route_bandwidth(sg_host_t from, sg_host_t to); +void sg_host_send_to(sg_host_t from, sg_host_t to, double byte_amount); + XBT_PUBLIC void sg_host_dump(sg_host_t ws); XBT_PUBLIC void sg_host_get_actor_list(sg_host_t host, xbt_dynar_t whereto);