X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/58a75cbb936bea3605621a7d38e2447ed8866011..39d3a0153b242aa016bdc528c9268a958bcd98d2:/src/mc/mc_checkpoint.c diff --git a/src/mc/mc_checkpoint.c b/src/mc/mc_checkpoint.c index 3c3d166b1b..b21f190862 100644 --- a/src/mc/mc_checkpoint.c +++ b/src/mc/mc_checkpoint.c @@ -629,6 +629,10 @@ static void MC_get_current_fd(mc_snapshot_t snapshot){ if (strncmp(link, "pipe:", 5) == 0 || strncmp(link, "socket:", 7) == 0) continue; + // This is probably a shared memory used by lttng-ust: + if(strncmp("/dev/shm/ust-shm-tmp-", link, 21)==0) + continue; + // Add an entry for this FD in the snapshot: fd_infos_t fd = xbt_new0(s_fd_infos_t, 1); fd->filename = strdup(link);