Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace swag by boost::intrusive::list in surf
[simgrid.git] / testsuite / surf / surf_usage2.c
index 9ff6cb8..8bb1a40 100644 (file)
@@ -1,6 +1,6 @@
 /* A few basic tests for the surf library                                   */
 
-/* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2004-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -80,15 +80,15 @@ void test(char *platform)
 
     xbt_dynar_foreach(model_list, iter, model) {
       XBT_DEBUG("\t %s actions", surf_model_name(model));
-      while ((action = xbt_swag_extract(surf_model_failed_action_set((surf_model_t)model)))) {
+      while ((action = surf_model_extract_failed_action_set((surf_model_t)model))) {
         XBT_DEBUG("\t * Failed : %p", action);
         surf_action_unref(action);
       }
-      while ((action = xbt_swag_extract(surf_model_done_action_set((surf_model_t)model)))) {
+      while ((action = surf_model_extract_done_action_set((surf_model_t)model))) {
         XBT_DEBUG("\t * Done : %p", action);
         surf_action_unref(action);
       }
-      if (xbt_swag_size(surf_model_running_action_set((surf_model_t)model))) {
+      if (surf_model_running_action_set_size((surf_model_t)model)) {
         XBT_DEBUG("running %s", surf_model_name(model));
         running = 1;
       }