From: Arnaud Giersch Date: Tue, 17 Jul 2018 12:25:33 +0000 (+0200) Subject: Cosmetic indentation. X-Git-Tag: v3_21~416 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/43b759712666bfd45566b0ded6f6bddf9a69ccfc Cosmetic indentation. --- diff --git a/src/simix/simcalls.py b/src/simix/simcalls.py index 2a140d4ae6..be84fb8186 100755 --- a/src/simix/simcalls.py +++ b/src/simix/simcalls.py @@ -349,10 +349,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->get_cname(),\n') - fd.write(' sg_host_get_name(simcall->issuer->host_)\n') - fd.write(' );\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->host_));\n') fd.write(' break;\n') fd.write(' default:\n') fd.write(' THROW_IMPOSSIBLE;\n') @@ -380,8 +378,8 @@ 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->get_cname(), - SIMIX_simcall_name(self->simcall.call), (int)self->simcall.call); + XBT_DEBUG("Yield process '%s' on simcall %s (%d)", self->get_cname(), SIMIX_simcall_name(self->simcall.call), + (int)self->simcall.call); SIMIX_process_yield(self); } else { SIMIX_simcall_handle(&self->simcall, 0);