X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6c12a132ca10eefd1d566e489e837e459db4d979..3ae4039533d80613612bb81524c164f33384df92:/src/mc/mc_unw.h diff --git a/src/mc/mc_unw.h b/src/mc/mc_unw.h index 267c850ca8..8e87c84896 100644 --- a/src/mc/mc_unw.h +++ b/src/mc/mc_unw.h @@ -53,7 +53,7 @@ extern unw_accessors_t mc_unw_vmread_accessors; * * It works with the `s_mc_unw_context_t` context. */ -extern unw_accessors_t mc_unw_accessors; +extern XBT_INTERNAL unw_accessors_t mc_unw_accessors; // ***** Libunwind context @@ -66,16 +66,16 @@ typedef struct s_mc_unw_context { } s_mc_unw_context_t, *mc_unw_context_t; /** Initialises an already allocated context */ -int mc_unw_init_context( +XBT_INTERNAL int mc_unw_init_context( mc_unw_context_t context, mc_process_t process, unw_context_t* c); /** Destroys (but not not `free`) a context */ -int mc_unw_destroy_context(mc_unw_context_t context); +XBT_INTERNAL int mc_unw_destroy_context(mc_unw_context_t context); // ***** Libunwind cursor /** Initialises a `libunwind` cursor */ -int mc_unw_init_cursor(unw_cursor_t *cursor, mc_unw_context_t context); +XBT_INTERNAL int mc_unw_init_cursor(unw_cursor_t *cursor, mc_unw_context_t context); SG_END_DECL()