X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/595e59c568ff5f8510de201bfd800951cdc2adcb..59094fa79de9a5e0e8d29ee12f34156d4be87156:/src/mc/mc_ignore.h diff --git a/src/mc/mc_ignore.h b/src/mc/mc_ignore.h index cf42fd1114..f146f50e53 100644 --- a/src/mc/mc_ignore.h +++ b/src/mc/mc_ignore.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2017. 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. */ @@ -7,25 +7,14 @@ #define SIMGRID_MC_IGNORE_H #include "src/internal_config.h" -#include "xbt/dynar.h" #if HAVE_UCONTEXT_H #include /* context relative declarations */ -#endif - 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(); -XBT_PUBLIC(void) MC_ignore_heap(void *address, size_t size); -XBT_PUBLIC(void) MC_remove_ignore_heap(void *address, size_t size); -XBT_PUBLIC(void) MC_ignore_local_variable(const char *var_name, const char *frame); -XBT_PUBLIC(void) MC_ignore_global_variable(const char *var_name); - -#if HAVE_UCONTEXT_H -XBT_PUBLIC(void) MC_register_stack_area(void *stack, smx_actor_t process, ucontext_t* context, size_t size); #endif - -SG_END_DECL(); - #endif