X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a201b7ceece70d2bc461ac48c8b746a36d07243..c6eefaa5a3198ebff98651ac72501367e4195ded:/src/msg/task.c diff --git a/src/msg/task.c b/src/msg/task.c index 1d43ecf63f..3479e4703b 100644 --- a/src/msg/task.c +++ b/src/msg/task.c @@ -1,6 +1,5 @@ -/* Copyright (c) 2002-2007 Arnaud Legrand. */ -/* Copyright (c) 2007 Bruno Donassolo. */ -/* All rights reserved. */ +/* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -55,6 +54,7 @@ m_task_t MSG_task_create(const char *name, double compute_duration, task->data = data; /* Simulator Data */ + simdata->host_nb = 0; simdata->computation_amount = compute_duration; simdata->message_size = message_size; simdata->rate = -1.0; @@ -136,6 +136,10 @@ const char *MSG_task_get_name(m_task_t task) return task->name; } +void MSG_task_refcount_dec(m_task_t task) +{ + task->simdata->refcount--; +} /** \ingroup m_task_management * \brief Destroy a #m_task_t.