X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/808bc801011b8291383a7fb87669eb67f46f3a07..59094fa79de9a5e0e8d29ee12f34156d4be87156:/src/kernel/activity/SynchroIo.hpp diff --git a/src/kernel/activity/SynchroIo.hpp b/src/kernel/activity/SynchroIo.hpp index a5202eeae0..03efd48fc0 100644 --- a/src/kernel/activity/SynchroIo.hpp +++ b/src/kernel/activity/SynchroIo.hpp @@ -1,26 +1,25 @@ -/* Copyright (c) 2007-2016. 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. */ -#ifndef _SIMIX_SYNCHRO_IO_HPP -#define _SIMIX_SYNCHRO_IO_HPP +#ifndef SIMIX_SYNCHRO_IO_HPP +#define SIMIX_SYNCHRO_IO_HPP -#include "surf/surf.h" -#include "src/kernel/activity/Synchro.h" +#include "src/kernel/activity/ActivityImpl.hpp" +#include "surf/surf.hpp" namespace simgrid { namespace kernel { namespace activity { - XBT_PUBLIC_CLASS Io : public Synchro { - 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