Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix SIMIX_post_io. For now SIMIX_req_file_read makes a Surf sleep action.
[simgrid.git] / src / simix / io_private.h
1 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _SIMIX_IO_PRIVATE_H
8 #define _SIMIX_IO_PRIVATE_H
9
10 #include "simix/datatypes.h"
11 #include "smurf_private.h"
12
13 void SIMIX_pre_file_read(smx_req_t req);
14 smx_action_t SIMIX_file_read(smx_process_t process, char* name);
15 void SIMIX_post_io(smx_action_t action);
16 void SIMIX_io_destroy(smx_action_t action);
17 void SIMIX_io_finish(smx_action_t action);
18
19 #endif