Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f1ca84dd59b44de7854cb9a5df2f53fec24e0768
[simgrid.git] / src / surf / host_ptask_L07.cpp
1 /* Copyright (c) 2007-2010, 2013-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 "host_ptask_L07.hpp"
8
9 #include "cpu_interface.hpp"
10 #include "surf_routing.hpp"
11 #include "xbt/lib.h"
12
13 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_host);
14
15 static int ptask_host_count = 0;
16 static xbt_dict_t ptask_parallel_task_link_set = NULL;
17 lmm_system_t ptask_maxmin_system = NULL;
18
19
20 /**************************************/
21 /*** Resource Creation & Destruction **/
22 /**************************************/
23
24 static void ptask_netlink_parse_init(sg_platf_link_cbarg_t link)
25 {
26   netlink_parse_init(link);
27   current_property_set = NULL;
28 }
29
30 void surf_host_model_init_ptask_L07(void)
31 {
32   XBT_INFO("Switching to the L07 model to handle parallel tasks.");
33   xbt_assert(!surf_cpu_model_pm, "CPU model type already defined");
34   xbt_assert(!surf_network_model, "network model type already defined");
35
36   // Define the callbacks to parse the XML
37   sg_platf_link_add_cb(ptask_netlink_parse_init);
38   sg_platf_postparse_add_cb(host_add_traces);
39
40   surf_host_model = new HostL07Model();
41   Model *model = surf_host_model;
42   xbt_dynar_push(all_existing_models, &model);
43 }
44
45
46 HostL07Model::HostL07Model() : HostModel() {
47   if (!ptask_maxmin_system)
48         ptask_maxmin_system = lmm_system_new(1);
49   surf_host_model = NULL;
50   surf_network_model = new NetworkL07Model(this);
51   surf_cpu_model_pm = new CpuL07Model(this);
52
53   routing_model_create(surf_network_model->createLink("__loopback__",
54                                                           498000000, NULL,
55                                                           0.000015, NULL,
56                                                           SURF_RESOURCE_ON, NULL,
57                                                           SURF_LINK_FATPIPE, NULL));
58 }
59
60 HostL07Model::~HostL07Model() {
61   xbt_dict_free(&ptask_parallel_task_link_set);
62
63   delete surf_cpu_model_pm;
64   delete surf_network_model;
65   ptask_host_count = 0;
66
67   if (ptask_maxmin_system) {
68     lmm_system_free(ptask_maxmin_system);
69     ptask_maxmin_system = NULL;
70   }
71 }
72
73 double HostL07Model::shareResources(double /*now*/)
74 {
75   L07Action *action;
76
77   ActionList *running_actions = getRunningActionSet();
78   double min = this->shareResourcesMaxMin(running_actions,
79                                               ptask_maxmin_system,
80                                               bottleneck_solve);
81
82   for(ActionList::iterator it(running_actions->begin()), itend(running_actions->end())
83          ; it != itend ; ++it) {
84         action = static_cast<L07Action*>(&*it);
85     if (action->m_latency > 0) {
86       if (min < 0) {
87         min = action->m_latency;
88         XBT_DEBUG("Updating min (value) with %p (start %f): %f", action,
89                action->getStartTime(), min);
90       } else if (action->m_latency < min) {
91         min = action->m_latency;
92         XBT_DEBUG("Updating min (latency) with %p (start %f): %f", action,
93                action->getStartTime(), min);
94       }
95     }
96   }
97
98   XBT_DEBUG("min value : %f", min);
99
100   return min;
101 }
102
103 void HostL07Model::updateActionsState(double /*now*/, double delta) {
104
105   L07Action *action;
106   ActionList *actionSet = getRunningActionSet();
107
108   for(ActionList::iterator it = actionSet->begin(), itNext = it
109          ; it != actionSet->end()
110          ; it =  itNext) {
111         ++itNext;
112     action = static_cast<L07Action*>(&*it);
113     if (action->m_latency > 0) {
114       if (action->m_latency > delta) {
115         double_update(&(action->m_latency), delta, sg_surf_precision);
116       } else {
117         action->m_latency = 0.0;
118       }
119       if ((action->m_latency == 0.0) && (action->isSuspended() == 0)) {
120         action->updateBound();
121         lmm_update_variable_weight(ptask_maxmin_system, action->getVariable(), 1.0);
122       }
123     }
124     XBT_DEBUG("Action (%p) : remains (%g) updated by %g.",
125            action, action->getRemains(), lmm_variable_getvalue(action->getVariable()) * delta);
126     action->updateRemains(lmm_variable_getvalue(action->getVariable()) * delta);
127
128     if (action->getMaxDuration() != NO_MAX_DURATION)
129       action->updateMaxDuration(delta);
130
131     XBT_DEBUG("Action (%p) : remains (%g).", action, action->getRemains());
132
133     /* In the next if cascade, the action can be finished either because:
134      *  - The amount of remaining work reached 0
135      *  - The max duration was reached
136      * If it's not done, it may have failed.
137      */
138
139     if ((action->getRemains() <= 0) &&
140         (lmm_get_variable_weight(action->getVariable()) > 0)) {
141       action->finish();
142       action->setState(SURF_ACTION_DONE);
143     } else if ((action->getMaxDuration() != NO_MAX_DURATION) &&
144                (action->getMaxDuration() <= 0)) {
145       action->finish();
146       action->setState(SURF_ACTION_DONE);
147     } else {
148       /* Need to check that none of the model has failed */
149       lmm_constraint_t cnst = NULL;
150       int i = 0;
151
152       while ((cnst = lmm_get_cnst_from_var(ptask_maxmin_system, action->getVariable(), i++))) {
153         void *constraint_id = lmm_constraint_id(cnst);
154
155         if (static_cast<Host*>(constraint_id)->getState() == SURF_RESOURCE_OFF) {
156           XBT_DEBUG("Action (%p) Failed!!", action);
157           action->finish();
158           action->setState(SURF_ACTION_FAILED);
159           break;
160         }
161       }
162     }
163   }
164   return;
165 }
166
167 Action *HostL07Model::executeParallelTask(int host_nb,
168                                           sg_host_t*host_list,
169                                                                                   double *flops_amount,
170                                                                                   double *bytes_amount,
171                                                                                   double rate)
172 {
173   L07Action *action = new L07Action(this, 1, 0);
174   unsigned int cpt;
175   int nb_link = 0;
176   int nb_host = 0;
177   double latency = 0.0;
178
179   action->p_edgeList->reserve(host_nb);
180   for (int i = 0; i<host_nb; i++)
181           action->p_edgeList->push_back(sg_host_edge(host_list[i]));
182
183   if (ptask_parallel_task_link_set == NULL)
184     ptask_parallel_task_link_set = xbt_dict_new_homogeneous(NULL);
185
186   xbt_dict_reset(ptask_parallel_task_link_set);
187
188   /* Compute the number of affected resources... */
189   for (int i = 0; i < host_nb; i++) {
190     for (int j = 0; j < host_nb; j++) {
191       xbt_dynar_t route=NULL;
192
193       if (bytes_amount[i * host_nb + j] > 0) {
194         double lat=0.0;
195         unsigned int cpt;
196         void *_link;
197         LinkL07 *link;
198
199         routing_platf->getRouteAndLatency((*action->p_edgeList)[i], (*action->p_edgeList)[j],
200                                                   &route, &lat);
201         latency = MAX(latency, lat);
202
203         xbt_dynar_foreach(route, cpt, _link) {
204            link = static_cast<LinkL07*>(_link);
205            xbt_dict_set(ptask_parallel_task_link_set, link->getName(), link, NULL);
206         }
207       }
208     }
209   }
210
211   nb_link = xbt_dict_length(ptask_parallel_task_link_set);
212   xbt_dict_reset(ptask_parallel_task_link_set);
213
214   for (int i = 0; i < host_nb; i++)
215     if (flops_amount[i] > 0)
216       nb_host++;
217
218   XBT_DEBUG("Creating a parallel task (%p) with %d cpus and %d links.",
219          action, host_nb, nb_link);
220   action->m_suspended = 0; /* valgrind seems to want it despite the calloc... */
221   action->p_computationAmount = flops_amount;
222   action->p_communicationAmount = bytes_amount;
223   action->m_latency = latency;
224   action->m_rate = rate;
225
226   action->p_variable = lmm_variable_new(ptask_maxmin_system, action, 1.0,
227                                         (rate > 0 ? rate : -1.0),
228                                                                                 host_nb + nb_link);
229
230   if (action->m_latency > 0)
231     lmm_update_variable_weight(ptask_maxmin_system, action->getVariable(), 0.0);
232
233   for (int i = 0; i < host_nb; i++)
234     lmm_expand(ptask_maxmin_system,
235                sg_host_surfcpu(host_list[i])->getConstraint(),
236                action->getVariable(), flops_amount[i]);
237
238   for (int i = 0; i < host_nb; i++) {
239     for (int j = 0; j < host_nb; j++) {
240       void *_link;
241
242       xbt_dynar_t route=NULL;
243       if (bytes_amount[i * host_nb + j] == 0.0)
244         continue;
245
246       routing_platf->getRouteAndLatency((*action->p_edgeList)[i], (*action->p_edgeList)[j],
247                                             &route, NULL);
248
249       xbt_dynar_foreach(route, cpt, _link) {
250         LinkL07 *link = static_cast<LinkL07*>(_link);
251         lmm_expand_add(ptask_maxmin_system, link->getConstraint(),
252                        action->getVariable(),
253                        bytes_amount[i * host_nb + j]);
254       }
255     }
256   }
257
258   if (nb_link + nb_host == 0) {
259     action->setCost(1.0);
260     action->setRemains(0.0);
261   }
262
263   return action;
264 }
265
266 Host *HostL07Model::createHost(const char *name,RoutingEdge *netElm, Cpu *cpu)
267 {
268   HostL07 *wk = NULL;
269   sg_host_t sg_host = sg_host_by_name(name);
270
271   xbt_assert(!surf_host_resource_priv(sg_host),
272               "Host '%s' declared several times in the platform file.",
273               name);
274
275   wk = new HostL07(this, name, NULL, netElm, cpu);
276
277   surf_callback_emit(hostCreatedCallbacks, wk);
278   xbt_lib_set(host_lib, name, SURF_HOST_LEVEL, wk);
279
280   return wk;
281 }
282
283 Action *NetworkL07Model::communicate(RoutingEdge *src, RoutingEdge *dst,
284                                        double size, double rate)
285 {
286   sg_host_t*host_list = xbt_new0(sg_host_t, 2);
287   double *flops_amount = xbt_new0(double, 2);
288   double *bytes_amount = xbt_new0(double, 4);
289   Action *res = NULL;
290
291   host_list[0] = sg_host_by_name(src->getName());
292   host_list[1] = sg_host_by_name(dst->getName());
293   bytes_amount[1] = size;
294
295   res = p_hostModel->executeParallelTask(2, host_list,
296                                     flops_amount,
297                                     bytes_amount, rate);
298
299   return res;
300 }
301
302 xbt_dynar_t HostL07Model::getRoute(Host *src, Host *dst)
303 {
304   xbt_dynar_t route=NULL;
305   routing_platf->getRouteAndLatency(src->p_netElm, dst->p_netElm, &route, NULL);
306   return route;
307 }
308
309 Cpu *CpuL07Model::createCpu(const char *name,  xbt_dynar_t powerPeak,
310                           int pstate, double power_scale,
311                           tmgr_trace_t power_trace, int core,
312                           e_surf_resource_state_t state_initial,
313                           tmgr_trace_t state_trace,
314                           xbt_dict_t cpu_properties)
315 {
316   double power_initial = xbt_dynar_get_as(powerPeak, pstate, double);
317   sg_host_t sg_host = sg_host_by_name(name);
318
319   xbt_assert(!surf_host_resource_priv(sg_host),
320               "Host '%s' declared several times in the platform file.",
321               name);
322
323   CpuL07 *cpu = new CpuL07(this, name, cpu_properties,
324                                      power_initial, power_scale, power_trace,
325                          core, state_initial, state_trace);
326   sg_host_surfcpu_register(sg_host, cpu);
327   return cpu;
328 }
329
330 Link* NetworkL07Model::createLink(const char *name,
331                                  double bw_initial,
332                                  tmgr_trace_t bw_trace,
333                                  double lat_initial,
334                                  tmgr_trace_t lat_trace,
335                                  e_surf_resource_state_t state_initial,
336                                  tmgr_trace_t state_trace,
337                                  e_surf_link_sharing_policy_t policy,
338                                  xbt_dict_t properties)
339 {
340   xbt_assert(!Link::byName(name),
341                  "Link '%s' declared several times in the platform file.", name);
342
343   Link* link = new LinkL07(this, name, properties,
344                              bw_initial, bw_trace,
345                                          lat_initial, lat_trace,
346                                          state_initial, state_trace,
347                                          policy);
348   surf_callback_emit(networkLinkCreatedCallbacks, link);
349   return link;
350 }
351
352 void HostL07Model::addTraces()
353 {
354   xbt_dict_cursor_t cursor = NULL;
355   char *trace_name, *elm;
356
357   if (!trace_connect_list_host_avail)
358     return;
359
360   /* Connect traces relative to cpu */
361   xbt_dict_foreach(trace_connect_list_host_avail, cursor, trace_name, elm) {
362     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
363     CpuL07 *host = static_cast<CpuL07*>(sg_host_surfcpu(sg_host_by_name(elm)));
364
365     xbt_assert(host, "Host %s undefined", elm);
366     xbt_assert(trace, "Trace %s undefined", trace_name);
367
368     host->p_stateEvent = tmgr_history_add_trace(history, trace, 0.0, 0, host);
369   }
370
371   xbt_dict_foreach(trace_connect_list_power, cursor, trace_name, elm) {
372     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
373     CpuL07 *host = static_cast<CpuL07*>(sg_host_surfcpu(sg_host_by_name(elm)));
374
375     xbt_assert(host, "Host %s undefined", elm);
376     xbt_assert(trace, "Trace %s undefined", trace_name);
377
378     host->p_powerEvent = tmgr_history_add_trace(history, trace, 0.0, 0, host);
379   }
380
381   /* Connect traces relative to network */
382   xbt_dict_foreach(trace_connect_list_link_avail, cursor, trace_name, elm) {
383     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
384     LinkL07 *link = static_cast<LinkL07*>(Link::byName(elm));
385
386     xbt_assert(link, "Link %s undefined", elm);
387     xbt_assert(trace, "Trace %s undefined", trace_name);
388
389     link->p_stateEvent = tmgr_history_add_trace(history, trace, 0.0, 0, link);
390   }
391
392   xbt_dict_foreach(trace_connect_list_bandwidth, cursor, trace_name, elm) {
393     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
394     LinkL07 *link = static_cast<LinkL07*>(Link::byName(elm));
395
396     xbt_assert(link, "Link %s undefined", elm);
397     xbt_assert(trace, "Trace %s undefined", trace_name);
398
399     link->p_bwEvent = tmgr_history_add_trace(history, trace, 0.0, 0, link);
400   }
401
402   xbt_dict_foreach(trace_connect_list_latency, cursor, trace_name, elm) {
403     tmgr_trace_t trace = (tmgr_trace_t) xbt_dict_get_or_null(traces_set_list, trace_name);
404     LinkL07 *link = static_cast<LinkL07*>(Link::byName(elm));
405
406     xbt_assert(link, "Link %s undefined", elm);
407     xbt_assert(trace, "Trace %s undefined", trace_name);
408
409     link->p_latEvent = tmgr_history_add_trace(history, trace, 0.0, 0, link);
410   }
411 }
412
413 /************
414  * Resource *
415  ************/
416
417 HostL07::HostL07(HostModel *model, const char* name, xbt_dict_t props, RoutingEdge *netElm, Cpu *cpu)
418   : Host(model, name, props, NULL, netElm, cpu)
419 {
420 }
421
422 CpuL07::CpuL07(CpuL07Model *model, const char* name, xbt_dict_t props,
423                      double power_initial, double power_scale, tmgr_trace_t power_trace,
424                            int core, e_surf_resource_state_t state_initial, tmgr_trace_t state_trace)
425  : Cpu(model, name, props, lmm_constraint_new(ptask_maxmin_system, this, power_initial * power_scale),
426            core, power_initial, power_scale, state_initial)
427 {
428   xbt_assert(m_powerScale > 0, "Power has to be >0");
429
430   if (power_trace)
431     p_powerEvent = tmgr_history_add_trace(history, power_trace, 0.0, 0, this);
432   else
433     p_powerEvent = NULL;
434
435   if (state_trace)
436         p_stateEvent = tmgr_history_add_trace(history, state_trace, 0.0, 0, this);
437 }
438
439 LinkL07::LinkL07(NetworkL07Model *model, const char* name, xbt_dict_t props,
440                          double bw_initial,
441                          tmgr_trace_t bw_trace,
442                          double lat_initial,
443                          tmgr_trace_t lat_trace,
444                          e_surf_resource_state_t state_initial,
445                          tmgr_trace_t state_trace,
446                          e_surf_link_sharing_policy_t policy)
447  : Link(model, name, props, lmm_constraint_new(ptask_maxmin_system, this, bw_initial), history, state_trace)
448 {
449   m_bwCurrent = bw_initial;
450   if (bw_trace)
451     p_bwEvent = tmgr_history_add_trace(history, bw_trace, 0.0, 0, this);
452
453   setState(state_initial);
454   m_latCurrent = lat_initial;
455
456   if (lat_trace)
457         p_latEvent = tmgr_history_add_trace(history, lat_trace, 0.0, 0, this);
458
459   if (policy == SURF_LINK_FATPIPE)
460         lmm_constraint_shared(getConstraint());
461 }
462
463 Action *CpuL07::execute(double size)
464 {
465   sg_host_t*host_list = xbt_new0(sg_host_t, 1);
466   double *flops_amount = xbt_new0(double, 1);
467   double *bytes_amount = xbt_new0(double, 1);
468
469   host_list[0] = sg_host_by_name(getName());
470   flops_amount[0] = size;
471
472   return static_cast<HostL07Model*>(getModel())->executeParallelTask(1, host_list,
473                                               flops_amount,
474                                      bytes_amount, -1);
475 }
476
477 Action *CpuL07::sleep(double duration)
478 {
479   L07Action *action = NULL;
480
481   XBT_IN("(%s,%g)", getName(), duration);
482
483   action = static_cast<L07Action*>(execute(1.0));
484   action->m_maxDuration = duration;
485   action->m_suspended = 2;
486   lmm_update_variable_weight(ptask_maxmin_system, action->getVariable(), 0.0);
487
488   XBT_OUT();
489   return action;
490 }
491
492 bool CpuL07::isUsed(){
493   return lmm_constraint_used(ptask_maxmin_system, getConstraint());
494 }
495
496 bool LinkL07::isUsed(){
497   return lmm_constraint_used(ptask_maxmin_system, getConstraint());
498 }
499
500 void CpuL07::updateState(tmgr_trace_event_t event_type, double value, double /*date*/){
501   XBT_DEBUG("Updating cpu %s (%p) with value %g", getName(), this, value);
502   if (event_type == p_powerEvent) {
503           m_powerScale = value;
504     lmm_update_constraint_bound(ptask_maxmin_system, getConstraint(), m_powerPeak * m_powerScale);
505     if (tmgr_trace_event_free(event_type))
506       p_powerEvent = NULL;
507   } else if (event_type == p_stateEvent) {
508     if (value > 0)
509       setState(SURF_RESOURCE_ON);
510     else
511       setState(SURF_RESOURCE_OFF);
512     if (tmgr_trace_event_free(event_type))
513       p_stateEvent = NULL;
514   } else {
515     XBT_CRITICAL("Unknown event ! \n");
516     xbt_abort();
517   }
518   return;
519 }
520
521 void LinkL07::updateState(tmgr_trace_event_t event_type, double value, double date) {
522   XBT_DEBUG("Updating link %s (%p) with value=%f for date=%g", getName(), this, value, date);
523   if (event_type == p_bwEvent) {
524     updateBandwidth(value, date);
525     if (tmgr_trace_event_free(event_type))
526       p_bwEvent = NULL;
527   } else if (event_type == p_latEvent) {
528     updateLatency(value, date);
529     if (tmgr_trace_event_free(event_type))
530       p_latEvent = NULL;
531   } else if (event_type == p_stateEvent) {
532     if (value > 0)
533       setState(SURF_RESOURCE_ON);
534     else
535       setState(SURF_RESOURCE_OFF);
536     if (tmgr_trace_event_free(event_type))
537       p_stateEvent = NULL;
538   } else {
539     XBT_CRITICAL("Unknown event ! \n");
540     xbt_abort();
541   }
542   return;
543 }
544
545 e_surf_resource_state_t HostL07::getState() {
546   return p_cpu->getState();
547 }
548
549
550 double LinkL07::getBandwidth()
551 {
552   return m_bwCurrent;
553 }
554
555 void LinkL07::updateBandwidth(double value, double date)
556 {
557   m_bwCurrent = value;
558   lmm_update_constraint_bound(ptask_maxmin_system, getConstraint(), m_bwCurrent);
559 }
560
561 double LinkL07::getLatency()
562 {
563   return m_latCurrent;
564 }
565
566 void LinkL07::updateLatency(double value, double date)
567 {
568   lmm_variable_t var = NULL;
569   L07Action *action;
570   lmm_element_t elem = NULL;
571
572   m_latCurrent = value;
573   while ((var = lmm_get_var_from_cnst(ptask_maxmin_system, getConstraint(), &elem))) {
574     action = static_cast<L07Action*>(lmm_variable_id(var));
575     action->updateBound();
576   }
577 }
578
579
580 bool LinkL07::isShared()
581 {
582   return lmm_constraint_is_shared(getConstraint());
583 }
584
585 /**********
586  * Action *
587  **********/
588
589 L07Action::~L07Action(){
590   free(p_communicationAmount);
591   free(p_computationAmount);
592 }
593
594 void L07Action::updateBound()
595 {
596   double lat_current = 0.0;
597   double lat_bound = -1.0;
598   int i, j;
599
600   int hostNb = p_edgeList->size();
601
602   for (i = 0; i < hostNb; i++) {
603     for (j = 0; j < hostNb; j++) {
604       xbt_dynar_t route=NULL;
605
606       if (p_communicationAmount[i * hostNb + j] > 0) {
607         double lat = 0.0;
608         routing_platf->getRouteAndLatency((*p_edgeList)[i], (*p_edgeList)[j],
609                                                           &route, &lat);
610
611         lat_current = MAX(lat_current, lat * p_communicationAmount[i * hostNb + j]);
612       }
613     }
614   }
615   lat_bound = sg_tcp_gamma / (2.0 * lat_current);
616   XBT_DEBUG("action (%p) : lat_bound = %g", this, lat_bound);
617   if ((m_latency == 0.0) && (m_suspended == 0)) {
618     if (m_rate < 0)
619       lmm_update_variable_bound(ptask_maxmin_system, getVariable(), lat_bound);
620     else
621       lmm_update_variable_bound(ptask_maxmin_system, getVariable(), min(m_rate, lat_bound));
622   }
623 }
624
625 int L07Action::unref()
626 {
627   m_refcount--;
628   if (!m_refcount) {
629     if (action_hook.is_linked())
630           p_stateSet->erase(p_stateSet->iterator_to(*this));
631     if (getVariable())
632       lmm_variable_free(ptask_maxmin_system, getVariable());
633     delete this;
634     return 1;
635   }
636   return 0;
637 }
638
639 void L07Action::cancel()
640 {
641   setState(SURF_ACTION_FAILED);
642   return;
643 }
644
645 void L07Action::suspend()
646 {
647   XBT_IN("(%p))", this);
648   if (m_suspended != 2) {
649     m_suspended = 1;
650     lmm_update_variable_weight(ptask_maxmin_system, getVariable(), 0.0);
651   }
652   XBT_OUT();
653 }
654
655 void L07Action::resume()
656 {
657   XBT_IN("(%p)", this);
658   if (m_suspended != 2) {
659     lmm_update_variable_weight(ptask_maxmin_system, getVariable(), 1.0);
660     m_suspended = 0;
661   }
662   XBT_OUT();
663 }
664
665 bool L07Action::isSuspended()
666 {
667   return m_suspended == 1;
668 }
669
670 void L07Action::setMaxDuration(double duration)
671 {                               /* FIXME: should inherit */
672   XBT_IN("(%p,%g)", this, duration);
673   m_maxDuration = duration;
674   XBT_OUT();
675 }
676
677 void L07Action::setPriority(double priority)
678 {                               /* FIXME: should inherit */
679   XBT_IN("(%p,%g)", this, priority);
680   m_priority = priority;
681   XBT_OUT();
682 }
683
684 double L07Action::getRemains()
685 {
686   XBT_IN("(%p)", this);
687   XBT_OUT();
688   return m_remains;
689 }