Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into fix/execute_benched
[simgrid.git] / src / xbt / mmalloc / mmprivate.h
index ce97df4..2fdc94c 100644 (file)
@@ -148,7 +148,7 @@ typedef struct {
   int type; /*  0: busy large block
                 >0: busy fragmented (fragments of size 2^type bytes)
                 <0: free block */
-  
+
   union {
     /* Heap information for a busy block.  */
     struct {
@@ -294,12 +294,6 @@ XBT_PUBLIC( void *)mmorecore(struct mdesc *mdp, ssize_t size);
 #define LOCK(mdp) pthread_mutex_lock(&mdp->mutex)
 #define UNLOCK(mdp) pthread_mutex_unlock(&mdp->mutex)
 
-static inline void  mmalloc_paranoia(struct mdesc *mdp){
-
-  /* nothing to fear for no */
-
-}
-
 static inline int mmalloc_get_increment(malloc_info* heapinfo) {
   if (heapinfo->type < 0) {
     return heapinfo->free_block.size;
@@ -310,8 +304,6 @@ static inline int mmalloc_get_increment(malloc_info* heapinfo) {
   }
 }
 
-XBT_PRIVATE void mmcheck(xbt_mheap_t heap);
-
 XBT_PRIVATE int malloc_use_mmalloc(void);
 
 XBT_PRIVATE int mmalloc_exec_using_mm(int argc, const char** argv);