Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SIMIX_comm_get_remains() -> simgrid::simix::Comm::remains()
[simgrid.git] / src / simix / SynchroRaw.cpp
1 /* Copyright (c) 2007-2016. 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 #include "src/simix/SynchroRaw.hpp"
7 #include "src/surf/surf_interface.hpp"
8
9 void simgrid::simix::Raw::suspend() {
10   /* The suspension of raw synchros is delayed to when the process is rescheduled. */
11 }
12
13 void simgrid::simix::Raw::resume() {
14   /* I cannot resume raw synchros directly. This is delayed to when the process is rescheduled at
15    * the end of the synchro. */
16 }