Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://github.com/mpoquet/simgrid
[simgrid.git] / src / s4u / s4u_activity.cpp
1 /* Copyright (c) 2006-2015. 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 #include "xbt/log.h"
8 #include "src/msg/msg_private.h"
9
10 #include "simgrid/s4u/Activity.hpp"
11
12 XBT_LOG_EXTERNAL_CATEGORY(s4u);
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_activity,s4u,"S4U activities");
14
15 namespace simgrid {
16 namespace s4u {
17
18 Activity::Activity() {
19
20 }
21 Activity::~Activity() {
22
23 }
24
25 void Activity::setRemains(double remains) {
26   xbt_assert(state_ == inited, "Cannot change the remaining amount of work once the Activity is started");
27   remains_ = remains;
28 }
29
30 }
31 }