X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8c272bc83bed049c84b9eb1155edbc1d01baaafb..831de10adaaf8910940aa280e2ac2dd075b5ffe5:/src/synchro/SynchroSleep.hpp diff --git a/src/synchro/SynchroSleep.hpp b/src/synchro/SynchroSleep.hpp deleted file mode 100644 index 749195cd74..0000000000 --- a/src/synchro/SynchroSleep.hpp +++ /dev/null @@ -1,27 +0,0 @@ -/* Copyright (c) 2007-2016. 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. */ - -#ifndef _SIMIX_SYNCHRO_SLEEP_HPP -#define _SIMIX_SYNCHRO_SLEEP_HPP - -#include "surf/surf.h" -#include "src/synchro/Synchro.h" - -namespace simgrid { -namespace simix { - - XBT_PUBLIC_CLASS Sleep : public Synchro { - public: - void suspend() override; - void resume() override; - void post() override; - - sg_host_t host = nullptr; /* The host that is sleeping */ - surf_action_t surf_sleep = nullptr; /* The Surf sleeping action encapsulated */ - }; - -}} // namespace simgrid::simix - -#endif