X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/98bd9e6807124982d6a9c1a189a89cf8f3664227..4c8b729ca205a05b34613dfe73d5f1b542c189f6:/include/xbt/backtrace.h diff --git a/include/xbt/backtrace.h b/include/xbt/backtrace.h index dd4fb3d7ed..6367997f40 100644 --- a/include/xbt/backtrace.h +++ b/include/xbt/backtrace.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2005-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2005-2018. The SimGrid Team. All rights reserved. */ #ifndef XBT_BACKTRACE_H #define XBT_BACKTRACE_H @@ -14,19 +14,19 @@ SG_BEGIN_DECL() typedef void* xbt_backtrace_location_t; /** @brief Shows a backtrace of the current location */ -XBT_PUBLIC(void) xbt_backtrace_display_current(); +XBT_PUBLIC void xbt_backtrace_display_current(); /** @brief reimplementation of glibc backtrace based directly on gcc library, without implicit malloc */ -XBT_PUBLIC(int) xbt_backtrace_no_malloc(void**bt, int size); +XBT_PUBLIC int xbt_backtrace_no_malloc(void** bt, int size); /** @brief Captures a backtrace for further use */ -XBT_PUBLIC(size_t) xbt_backtrace_current(xbt_backtrace_location_t* loc, size_t count); +XBT_PUBLIC size_t xbt_backtrace_current(xbt_backtrace_location_t* loc, size_t count); /** @brief Display a previously captured backtrace */ -XBT_PUBLIC(void) xbt_backtrace_display(xbt_backtrace_location_t* loc, size_t count); +XBT_PUBLIC void xbt_backtrace_display(xbt_backtrace_location_t* loc, size_t count); /** @brief Get current backtrace with libunwind */ -XBT_PUBLIC(int) xbt_libunwind_backtrace(void** bt, int size); +XBT_PUBLIC int xbt_libunwind_backtrace(void** bt, int size); SG_END_DECL()