X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/70de59087500552156e19520863b7b434bf3edfc..c41f6db03c1da0871287a5b70f919ab44278d938:/include/xbt/misc.h diff --git a/include/xbt/misc.h b/include/xbt/misc.h index a4fa1b52f9..03257f5f88 100644 --- a/include/xbt/misc.h +++ b/include/xbt/misc.h @@ -84,11 +84,18 @@ typedef struct { const char *xbt_procname(void); - /** \brief Pointer to a function freeing a pointed data */ + +/* Generic function type */ + typedef void (void_f_ppvoid_t)(void**); - /** \brief Pointer to a function freeing some data */ - typedef void (void_f_pvoid_t) (void*); + typedef void (void_f_pvoid_t) (void*); + + typedef int (int_f_pvoid_pvoid_t) (void*,void*); + + typedef int (*int_f_void_t) (void); /* FIXME: rename it to int_pf_void_t */ +#define XBT_BACKTRACE_SIZE 10 /* FIXME: better place? Do document */ + SG_END_DECL() #endif /* XBT_MISC_H */