X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ffe8ce65fd9a8e18a0469f26f067c3ea6d5d60d4..0bb08c80b2bff9de24524dc98f04cd145dfc93c0:/src/mc/mc_ignore.h diff --git a/src/mc/mc_ignore.h b/src/mc/mc_ignore.h index fef9bcd633..f146f50e53 100644 --- a/src/mc/mc_ignore.h +++ b/src/mc/mc_ignore.h @@ -1,22 +1,20 @@ -/* Copyright (c) 2015. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2018. 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. */ -#include +#ifndef SIMGRID_MC_IGNORE_H +#define SIMGRID_MC_IGNORE_H -#include "mc/datatypes.h" -#include "mc_process.h" +#include "src/internal_config.h" -#include "xbt/misc.h" /* SG_BEGIN_DECL */ +#if HAVE_UCONTEXT_H +#include /* context relative declarations */ SG_BEGIN_DECL(); +XBT_PUBLIC void MC_register_stack_area(void* stack, smx_actor_t process, ucontext_t* context, size_t size); +SG_END_DECL(); -void MC_heap_region_ignore_insert(mc_heap_ignore_region_t region); -void MC_process_ignore_memory(mc_process_t process, void *addr, size_t size); -void MC_stack_area_add(stack_region_t stack_area); - -xbt_dynar_t MC_checkpoint_ignore_new(void); - +#endif -SG_END_DECL(); +#endif