X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..12e37132d1b9b141fa8497e17b0629cfd4173c36:/src/simix/smx_host_private.hpp diff --git a/src/simix/smx_host_private.hpp b/src/simix/smx_host_private.hpp index 5f49d3fe1e..8c13cc2cb6 100644 --- a/src/simix/smx_host_private.hpp +++ b/src/simix/smx_host_private.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-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. */ @@ -6,55 +6,14 @@ #ifndef SIMIX_HOST_PRIVATE_HPP #define SIMIX_HOST_PRIVATE_HPP -#include -#include -#include +#include "src/simix/ActorImpl.hpp" -#include -#include +#include -#include "popping_private.hpp" -#include "simgrid/simix.h" +XBT_PRIVATE void SIMIX_execution_finish(smx_activity_t synchro); -#include "ActorImpl.hpp" -#include "src/kernel/activity/ExecImpl.hpp" - -/** @brief Host datatype from SIMIX POV */ -namespace simgrid { -namespace simix { - -class Host { -public: - static simgrid::xbt::Extension EXTENSION_ID; - - explicit Host(); - virtual ~Host(); - - xbt_swag_t process_list; - std::vector auto_restart_processes; - std::vector boot_processes; - - void turnOn(); -}; -} -} - -extern "C" { -XBT_PRIVATE void SIMIX_host_add_auto_restart_process(sg_host_t host, const char* name, std::function code, - void* data, double kill_time, - std::map* properties, int auto_restart); - -XBT_PRIVATE void SIMIX_host_autorestart(sg_host_t host); - -XBT_PRIVATE void SIMIX_execution_finish(simgrid::kernel::activity::ExecImplPtr exec); - -XBT_PRIVATE void SIMIX_set_category(smx_activity_t synchro, const char* category); -} - -XBT_PRIVATE boost::intrusive_ptr -SIMIX_execution_start(smx_actor_t issuer, const char* name, double flops_amount, double priority, double bound); -XBT_PRIVATE boost::intrusive_ptr -SIMIX_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount, - double* bytes_amount, double rate, double timeout); +XBT_PRIVATE simgrid::kernel::activity::ExecImplPtr +SIMIX_execution_parallel_start(std::string name, int host_nb, const sg_host_t* host_list, const double* flops_amount, + const double* bytes_amount, double rate, double timeout); #endif