X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8250fdfeb9c8dd3ae2a1d19f3c89871c9599d0f8..da6a8948438ab0798f492ed7bf5dad2a515ca04e:/src/simix/popping_bodies.cpp diff --git a/src/simix/popping_bodies.cpp b/src/simix/popping_bodies.cpp index ccdeaaf337..afef6c4288 100644 --- a/src/simix/popping_bodies.cpp +++ b/src/simix/popping_bodies.cpp @@ -4,6 +4,7 @@ /* DO NOT EVER CHANGE THIS FILE */ /* */ /* change simcalls specification in src/simix/simcalls.in */ +/* Copyright (c) 2014-2017. The SimGrid Team. All rights reserved. */ /**********************************************************************/ /* @@ -347,30 +348,6 @@ inline static int simcall_BODY_file_move(smx_file_t fd, const char* fullpath) { return simcall(SIMCALL_FILE_MOVE, fd, fullpath); } -inline static sg_size_t simcall_BODY_storage_get_free_size(smx_storage_t storage) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_storage_get_free_size(&SIMIX_process_self()->simcall, storage); - return simcall(SIMCALL_STORAGE_GET_FREE_SIZE, storage); - } - -inline static sg_size_t simcall_BODY_storage_get_used_size(smx_storage_t name) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) simcall_HANDLER_storage_get_used_size(&SIMIX_process_self()->simcall, name); - return simcall(SIMCALL_STORAGE_GET_USED_SIZE, name); - } - -inline static xbt_dict_t simcall_BODY_storage_get_properties(smx_storage_t storage) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) SIMIX_storage_get_properties(storage); - return simcall(SIMCALL_STORAGE_GET_PROPERTIES, storage); - } - -inline static xbt_dict_t simcall_BODY_storage_get_content(smx_storage_t storage) { - /* Go to that function to follow the code flow through the simcall barrier */ - if (0) SIMIX_storage_get_content(storage); - return simcall(SIMCALL_STORAGE_GET_CONTENT, storage); - } - inline static int simcall_BODY_mc_random(int min, int max) { /* Go to that function to follow the code flow through the simcall barrier */ if (0) simcall_HANDLER_mc_random(&SIMIX_process_self()->simcall, min, max);