Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill a deprecated function
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 6 Apr 2016 09:14:50 +0000 (11:14 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 6 Apr 2016 09:14:50 +0000 (11:14 +0200)
include/xbt/module.h
src/xbt/xbt_main.c

index 9405484..398e9f7 100644 (file)
@@ -14,7 +14,6 @@
 SG_BEGIN_DECL()
 
 XBT_PUBLIC(void) xbt_init(int *argc, char **argv);
-XBT_PUBLIC(void) xbt_exit(void);
 
 SG_END_DECL()
 
index 8b9b415..3451b60 100644 (file)
@@ -150,14 +150,6 @@ void xbt_init(int *argc, char **argv)
   xbt_log_init(argc, argv);
 }
 
-/** @brief Finalize the xbt mechanisms.
- *  @warning this function is deprecated. Just don't call it, there is nothing more to do to finalize xbt*/
-void xbt_exit()
-{
-  XBT_WARN("This function is deprecated, you shouldn't use it");
-}
-
-
 /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */
 /** @brief like free, but you can be sure that it is a function  */
 void xbt_free_f(void *p)