Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smx: synchro->suspend() and synchro->resume() as proper methods
[simgrid.git] / src / simix / SynchroExec.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/SynchroExec.hpp"
7 #include "src/surf/surf_interface.hpp"
8
9 void simgrid::simix::Exec::suspend()
10 {
11   if (surf_exec)
12     surf_exec->suspend();
13 }
14
15 void simgrid::simix::Exec::resume()
16 {
17   if (surf_exec)
18     surf_exec->resume();
19 }