~ubuntu-branches/ubuntu/oneiric/simgrid/oneiric

« back to all changes in this revision

Viewing changes to src/instr/instr_simdag.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Quinson
  • Date: 2011-05-24 17:28:10 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110524172810-s95cvuff63wvfxdy
Tags: 3.6~rc2-1
* New upstream version: Release candidate to 3.6 
  (There were two of them to take a last minute change into account)
* First upload to unstable
* Bump standards-version to 3.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
void TRACE_sd_set_task_category(SD_task_t task, const char *category)
24
24
{
25
 
  if (!TRACE_is_active())
 
25
  if (!TRACE_is_enabled())
26
26
    return;
27
27
  task->category = xbt_strdup (category);
28
28
}