X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/26f77b7dd18750482fccb9c88c437ccccfa91d66..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/examples/smpi/mc/bugged1_liveness.c diff --git a/examples/smpi/mc/bugged1_liveness.c b/examples/smpi/mc/bugged1_liveness.c index 2b2b494e64..0b215f9324 100644 --- a/examples/smpi/mc/bugged1_liveness.c +++ b/examples/smpi/mc/bugged1_liveness.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2018. The SimGrid Team. +/* Copyright (c) 2013-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -21,6 +21,7 @@ #include #include #include +#include #define GRANT_TAG 0 #define REQUEST_TAG 1 @@ -46,7 +47,7 @@ int main(int argc, char **argv){ MC_automaton_new_propositional_symbol_pointer("r", &r); MC_automaton_new_propositional_symbol_pointer("cs", &cs); - MC_ignore(&(status.count), sizeof(status.count)); + MC_ignore(&status.count, sizeof status.count); /* Get number of processes */ MPI_Comm_size(MPI_COMM_WORLD, &size); @@ -63,7 +64,7 @@ int main(int argc, char **argv){ xbt_dynar_push(requests, &recv_buff); }else{ if(recv_buff != size - 1){ - printf("CS idle. Grant immediatly.\n"); + printf("CS idle. Grant immediately.\n"); MPI_Send(&rank, 1, MPI_INT, recv_buff, GRANT_TAG, MPI_COMM_WORLD); CS_used = 1; }