X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9aa3a4378d516f0d92531f6f98a127c4a798386e..0224a9ae5debdfc901f8f201b9567b8b0825740a:/src/kernel/activity/SynchroIo.hpp diff --git a/src/kernel/activity/SynchroIo.hpp b/src/kernel/activity/SynchroIo.hpp index b9c405daa3..03efd48fc0 100644 --- a/src/kernel/activity/SynchroIo.hpp +++ b/src/kernel/activity/SynchroIo.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2018. 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,21 +6,20 @@ #ifndef SIMIX_SYNCHRO_IO_HPP #define SIMIX_SYNCHRO_IO_HPP -#include "surf/surf.h" #include "src/kernel/activity/ActivityImpl.hpp" +#include "surf/surf.hpp" namespace simgrid { namespace kernel { namespace activity { - XBT_PUBLIC_CLASS Io : public ActivityImpl { - public: - void suspend() override; - void resume() override; - void post() override; +class XBT_PUBLIC IoImpl : public ActivityImpl { +public: + void suspend() override; + void resume() override; + void post() override; - sg_host_t host = nullptr; - surf_action_t surf_io = nullptr; + simgrid::kernel::resource::Action* surf_io = nullptr; }; }}} // namespace simgrid::kernel::activity