Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
some useless s/process/actor/ in the source code
[simgrid.git] / src / simix / smx_io_private.hpp
1 /* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMIX_IO_PRIVATE_HPP
7 #define SIMIX_IO_PRIVATE_HPP
8
9 #include <xbt/base.h>
10 #include "simgrid/s4u/Io.hpp"
11
12 XBT_PRIVATE simgrid::kernel::activity::IoImplPtr SIMIX_io_start(std::string name, sg_size_t size, sg_storage_t storage,
13                                                                 simgrid::s4u::Io::OpType type);
14
15 XBT_PRIVATE void SIMIX_io_finish(smx_activity_t synchro);
16
17 #endif