X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/31ec42c7c3a970448512dcc6b61c5dc08d3b17d4..038fd3c4a495508204a7b9c2e9745426a0bfadf1:/src/simix/simcalls.py diff --git a/src/simix/simcalls.py b/src/simix/simcalls.py index d9a3ae145d..3d71623a0b 100755 --- a/src/simix/simcalls.py +++ b/src/simix/simcalls.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (c) 2014-2018. The SimGrid Team. All rights reserved. +# Copyright (c) 2014-2019. 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. @@ -236,7 +236,7 @@ def header(name): fd.write( '/* change simcalls specification in src/simix/simcalls.in */\n') fd.write( - '/* Copyright (c) 2014-2018. The SimGrid Team. All rights reserved. */\n') + '/* Copyright (c) 2014-2019. The SimGrid Team. All rights reserved. */\n') fd.write( '/**********************************************************************/\n\n') fd.write('/*\n') @@ -313,8 +313,6 @@ if __name__ == '__main__': fd.write('#include "src/mc/mc_forward.hpp"\n') fd.write('#endif\n') fd.write('#include "src/kernel/activity/ConditionVariableImpl.hpp"\n') - fd.write('#include "src/simix/smx_host_private.hpp"\n') - fd.write('#include "src/simix/smx_synchro_private.hpp"\n') fd.write('\n') fd.write('XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_popping);\n\n') @@ -340,7 +338,7 @@ if __name__ == '__main__': ' XBT_DEBUG("Handling simcall %p: %s", simcall, SIMIX_simcall_name(simcall->call));\n') fd.write(' SIMCALL_SET_MC_VALUE(simcall, value);\n') fd.write( - ' if (simcall->issuer->context->iwannadie && simcall->call != SIMCALL_PROCESS_CLEANUP)\n') + ' if (simcall->issuer->context_->iwannadie)\n') fd.write(' return;\n') fd.write(' switch (simcall->call) {\n') @@ -349,11 +347,8 @@ if __name__ == '__main__': fd.write(' case NUM_SIMCALLS:\n') fd.write(' break;\n') fd.write(' case SIMCALL_NONE:\n') - fd.write(' THROWF(arg_error,0,"Asked to do the noop syscall on %s@%s",\n') - fd.write(' simcall->issuer->name.c_str(),\n') - fd.write(' sg_host_get_name(simcall->issuer->host)\n') - fd.write(' );\n') - fd.write(' break;\n') + fd.write(' THROWF(arg_error, 0, "Asked to do the noop syscall on %s@%s", simcall->issuer->get_cname(),\n') + fd.write(' sg_host_get_name(simcall->issuer->get_host()));\n') fd.write(' default:\n') fd.write(' THROW_IMPOSSIBLE;\n') fd.write(' }\n') @@ -367,7 +362,6 @@ if __name__ == '__main__': fd = header('popping_bodies.cpp') fd.write('#include "smx_private.hpp"\n') fd.write('#include "src/mc/mc_forward.hpp"\n') - fd.write('#include "src/simix/smx_synchro_private.hpp"\n') fd.write('#include "xbt/ex.h"\n') fd.write('#include \n') fd.write('#include \n') @@ -380,9 +374,9 @@ inline static R simcall(e_smx_simcall_t call, T const&... t) smx_actor_t self = SIMIX_process_self(); simgrid::simix::marshal(&self->simcall, call, t...); if (self != simix_global->maestro_process) { - XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->name.c_str(), - SIMIX_simcall_name(self->simcall.call), (int)self->simcall.call); - SIMIX_process_yield(self); + XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->get_cname(), SIMIX_simcall_name(self->simcall.call), + (int)self->simcall.call); + self->yield(); } else { SIMIX_simcall_handle(&self->simcall, 0); }