X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7983449a462dd833c3ea25694a50f7be0fa9c784..db7e2db2bb48fbf6c4b6cdb22a7d66a476de9580:/testsuite/surf/surf_usage2.c diff --git a/testsuite/surf/surf_usage2.c b/testsuite/surf/surf_usage2.c index a92b72de55..762fedbbbf 100644 --- a/testsuite/surf/surf_usage2.c +++ b/testsuite/surf/surf_usage2.c @@ -6,10 +6,16 @@ /* 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. */ +#ifdef __BORLANDC__ +#pragma hdrstop +#endif #include #include "surf/surf.h" +#include "xbt/log.h" +XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test,"Messages specific for surf example"); + const char *string_action(e_surf_action_state_t state); const char *string_action(e_surf_action_state_t state) { @@ -39,80 +45,83 @@ void test(char *platform) surf_action_t actionB = NULL; surf_action_t actionC = NULL; surf_action_t commAB = NULL; - e_surf_action_state_t stateActionA; - e_surf_action_state_t stateActionB; - e_surf_action_state_t stateActionC; double now = -1.0; - surf_workstation_resource_init_CLM03(platform); + surf_workstation_model_init_CLM03(platform); /*********************** WORKSTATION ***********************************/ workstationA = - surf_workstation_resource->common_public->name_service("Cpu A"); + surf_workstation_model->common_public->name_service("Cpu A"); workstationB = - surf_workstation_resource->common_public->name_service("Cpu B"); + surf_workstation_model->common_public->name_service("Cpu B"); /* Let's check that those two processors exist */ - printf("%s : %p\n", - surf_workstation_resource->common_public-> + DEBUG2("%s : %p\n", + surf_workstation_model->common_public-> get_resource_name(workstationA), workstationA); - printf("%s : %p\n", - surf_workstation_resource->common_public-> + DEBUG2("%s : %p\n", + surf_workstation_model->common_public-> get_resource_name(workstationB), workstationB); /* Let's do something on it */ actionA = - surf_workstation_resource->extension_public->execute(workstationA, + surf_workstation_model->extension_public->execute(workstationA, 1000.0); actionB = - surf_workstation_resource->extension_public->execute(workstationB, + surf_workstation_model->extension_public->execute(workstationB, 1000.0); actionC = - surf_workstation_resource->extension_public->sleep(workstationB, + surf_workstation_model->extension_public->sleep(workstationB, 7.32); commAB = - surf_workstation_resource->extension_public-> + surf_workstation_model->extension_public-> communicate(workstationA, workstationB, 150.0, -1.0); surf_solve(); /* Takes traces into account. Returns 0.0 */ do { surf_action_t action = NULL; int i; - surf_resource_t resource = NULL; + surf_model_t model = NULL; now = surf_get_clock(); - printf("Next Event : " "%lg" "\n", now); + DEBUG1("Next Event : " "%g" "\n", now); - xbt_dynar_foreach(resource_list, i, resource) { - printf("\t %s actions\n", resource->common_public->name); + xbt_dynar_foreach(model_list, i, model) { + DEBUG1("\t %s actions\n", model->common_public->name); while ((action = - xbt_swag_extract(resource->common_public->states. + xbt_swag_extract(model->common_public->states. failed_action_set))) { - printf("\t * Failed : %p\n", action); - resource->common_public->action_free(action); + DEBUG1("\t * Failed : %p\n", action); + model->common_public->action_free(action); } while ((action = - xbt_swag_extract(resource->common_public->states. + xbt_swag_extract(model->common_public->states. done_action_set))) { - printf("\t * Done : %p\n", action); - resource->common_public->action_free(action); + DEBUG1("\t * Done : %p\n", action); + model->common_public->action_free(action); } } } while (surf_solve()>=0.0); - printf("Simulation Terminated\n"); + DEBUG0("Simulation Terminated\n"); - surf_finalize(); } +#ifdef __BORLANDC__ +#pragma argsused +#endif + int main(int argc, char **argv) { surf_init(&argc, argv); /* Initialize some common structures */ if(argc==1) { fprintf(stderr,"Usage : %s platform.txt\n",argv[0]); + surf_exit(); return 1; } test(argv[1]); + + surf_exit(); return 0; }