X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6d8b8ade25d24e33e57eb02b443f567a0733c664..95f6003dd91bcac6493664491e831de740ebffd3:/src/surf/host_interface.hpp diff --git a/src/surf/host_interface.hpp b/src/surf/host_interface.hpp index c6c144d231..b69e1a8e12 100644 --- a/src/surf/host_interface.hpp +++ b/src/surf/host_interface.hpp @@ -52,7 +52,7 @@ public: HostModel() : Model() {} ~HostModel() {} - virtual Host *createHost(const char *name, RoutingEdge *net, Cpu *cpu, xbt_dict_t props)=0; + Host *createHost(const char *name, NetCard *net, Cpu *cpu, xbt_dict_t props); void addTraces() override {DIE_IMPOSSIBLE;} virtual void adjustWeightOfDummyCpuActions(); @@ -72,8 +72,9 @@ public: * @brief SURF Host interface class * @details An host represents a machine with a aggregation of a Cpu, a RoutingEdge and a Storage */ -class Host : public simgrid::surf::Resource, - public simgrid::surf::PropertyHolder { +class Host : + public simgrid::surf::Resource, + public simgrid::surf::PropertyHolder { public: static simgrid::xbt::Extension EXTENSION_ID; @@ -83,7 +84,6 @@ public: static simgrid::surf::signal onStateChange; public: - static void classInit(); /** * @brief Host constructor * @@ -95,7 +95,7 @@ public: * @param cpu The Cpu associated to this Host */ Host(simgrid::surf::Model *model, const char *name, xbt_dict_t props, - xbt_dynar_t storage, RoutingEdge *netElm, Cpu *cpu); + xbt_dynar_t storage, NetCard *netElm, Cpu *cpu); /** * @brief Host constructor @@ -109,7 +109,7 @@ public: * @param cpu The Cpu associated to this Host */ Host(simgrid::surf::Model *model, const char *name, xbt_dict_t props, - lmm_constraint_t constraint, xbt_dynar_t storage, RoutingEdge *netElm, + lmm_constraint_t constraint, xbt_dynar_t storage, NetCard *netElm, Cpu *cpu); /* Host destruction logic */ @@ -128,24 +128,6 @@ public: e_surf_resource_state_t getState(); void setState(e_surf_resource_state_t state); - /** - * @brief Execute some quantity of computation - * - * @param flops_amount The value of the processing amount (in flop) needed to process - * @return The CpuAction corresponding to the processing - * @see Cpu - */ - Action *execute(double flops_amount); - - /** - * @brief Make a process sleep for duration seconds - * - * @param duration The number of seconds to sleep - * @return The CpuAction corresponding to the sleeping - * @see Cpu - */ - Action *sleep(double duration); - /** @brief Return the storage of corresponding mount point */ virtual simgrid::surf::Storage *findStorageOnMountList(const char* storage); @@ -259,7 +241,7 @@ public: public: xbt_dynar_t p_storage; - RoutingEdge *p_netElm; + NetCard *p_netElm; Cpu *p_cpu; simgrid::Host* p_host = nullptr;