Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename s4u Async to Activities
[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 using namespace simgrid;
15
16 s4u::Activity::Activity() {
17
18 }
19 s4u::Activity::~Activity() {
20
21 }
22
23 void s4u::Activity::setRemains(double remains) {
24   xbt_assert(state_ == inited, "Cannot change the remaining amount of work once the Activity is started");
25   remains_ = remains;
26 }
27