X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b757886241c3fc8c055842b3cf7fef7494031d7..6ea02583071600052a8d20356d211df93a6eec4b:/src/surf/surf_action.c diff --git a/src/surf/surf_action.c b/src/surf/surf_action.c index 4e4707f6a1..7a5734dab3 100644 --- a/src/surf/surf_action.c +++ b/src/surf/surf_action.c @@ -1,4 +1,5 @@ -/* Copyright (c) 2009 The SimGrid Team. All rights reserved. */ +/* Copyright (c) 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. */ @@ -58,12 +59,12 @@ e_surf_action_state_t surf_action_state_get(surf_action_t action) return SURF_ACTION_NOT_IN_THE_SYSTEM; } -XBT_INLINE double surf_action_get_start_time(surf_action_t action) +double surf_action_get_start_time(surf_action_t action) { return action->start; } -XBT_INLINE double surf_action_get_finish_time(surf_action_t action) +double surf_action_get_finish_time(surf_action_t action) { /* keep the function behavior, some models (cpu_ti) change the finish time before the action end */ return action->remains == 0 ? action->finish : -1; @@ -98,7 +99,7 @@ void surf_action_state_set(surf_action_t action, e_surf_action_state_t state) XBT_OUT; } -XBT_INLINE void surf_action_data_set(surf_action_t action, void *data) +void surf_action_data_set(surf_action_t action, void *data) { action->data = data; }